在只读属性上使用.CheckProperty
时是否可以使用?PersistenceSpecification
例如,Used
作为只读属性的类,作为SetAsUsed
设置属性的方法:
public class MyClass
{
public virtual int Id { get; set; }
public virtual string Code { get; set; }
public virtual DateTime? Used { get; private set; }
public virtual void SetAsUsed()
{
Used = DateTime.Now;
}
}
我想做一个持久性规范,例如:
new PersistenceSpecification<ForgotPasswordRequest>(Session)
.CheckProperty(x => x.Code, "a@b.com")
.CheckProperty(x => x.Used, //??
.VerifyTheMappings();
但不确定如何SetAsUsed
从这里调用该方法?