标签:
当我们使用CodeFirst时,有时候需要设置默认值!
如下
public int Delete { get; set; } = 0; public string AdminName {get; set;} = "admin"; public bool CacheDbResults { get; set; } = true;
EF Core1.0 CodeFirst为Modell设置默认值!
标签:
原文地址:http://www.cnblogs.com/kismet82/p/5559795.html