使用fluent api将所有实体字段设置为必需字段



是否有任何方法可以使用fluent API同时设置所需的所有实体字段。

尝试这种方法:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Properties().Where(p => p.DeclaringType == typeof(EntityClassName))
.Configure(c => c.IsRequired());
}

相关内容

  • 没有找到相关文章

最新更新