我有一个类Client,如下所示
public class Client
{
public int UniqueLoginsPerDay { get; set; }
public virtual Limit Limit { get; set; }
public int LimitId { get; set; }
}
然后我有一个限制类
public class Limit
{
public string Email{ get; set; } = myMail@gmail.com;
public int UniqueLoginsPerDayLimit { get; set; } = 200000;
public virtual Client Client{ get; set; }
public int ClientId { get; set; }
}
什么是最明智的方式来附加"默认"将对象限制为我的客户实体?
我正在使用EntityFramework.Core 7.0.0-rc1-final
我知道这个question,其中给出的解决方案不适用于EntityFramework.Core 7.0.0-rc1-final。
答案 0 :(得分:1)
这对我来说听起来像是商业逻辑。你能把它移到比数据访问类更高的位置吗?