为什么这个动态比较会在构造阶段失败?
csharp
using System;
using System.Linq.Expressions;
var product = Expression.Parameter(typeof(Product), "product");
var price = Expression.Property(product, nameof(Product.Price));
var supplied = Expression.Constant("100");
var comparison = Expression.GreaterThanOrEqual(price, supplied);
public sealed record Product(decimal Price);