Допустим, у меня есть эта сущность
public class Address : Entity
{
public Address()
{
ModifiedDate = DateTime.Now;
}
[NotNull]
public virtual Province Province { get; set; }
[NotNullNotEmpty]
[Length(Max = 80)]
public virtual string Line1 { get; set; }
[Length(Max = 80)]
public virtual string Line2 { get; set; }
[NotNullNotEmpty]
[Length(Max=50)]
public virtual string City { get; set; }
[NotNullNotEmpty]
[Length(Max = 15)]
public virtual string PostalCode { get; set; }
[NotNull]
public virtual DateTime ModifiedDate { get; set; }
}
Я хочу обновить ModifiedDate перед каждым вызовом SaveOrUpdate?Как я могу это сделать?
Есть ли способ подключить что-то в хранилище?