我想为我的实体分配架构名称,而不指定表名。现在,我只能做:modelBuilder.Entity<T>().ToTable("MyEntities", "myschema");
有没有办法做类似的事情:modelBuilder.Entity<T>().ToTable("myschema")
?请考虑到我不能使用 PluralizationService 并手动计算表名,因为 PluralizationService 成为内部...
问问题
819 次
1 回答
1
怎么样...
var t = typeof (T);
var name= t.Name;
modelBuilder.Entity<T>().ToTable(name, "myschema")
如果您需要上下文中的 DbSet 复数名称
public DbSet<Single> Plural{ get; set; }
然后可以对这个小扩展进行返工以返回您想要的值。两者的组合,没有循环。但我相信你会找到正确的变化......
public static class BosDalExtensions
{
public static List<string> GetModelNames(this DbContext context ) {
var model = new List<string>();
var propList = context.GetType().GetProperties();
foreach (var propertyInfo in propList)
{
if (propertyInfo.PropertyType.GetTypeInfo().Name.StartsWith("DbSet"))
{
model.Add(propertyInfo.Name);
}
}
return model;
}
public static List<string> GetModelTypes(this DbContext context)
{
var model = new List<string>();
var propList = context.GetType().GetProperties();
foreach (var propertyInfo in propList)
{
if (propertyInfo.PropertyType.GetTypeInfo().Name.StartsWith("DbSet" ))
{
model.Add(propertyInfo.PropertyType.GenericTypeArguments[0].Name);
}
}
return model;
}
}
于 2013-02-11T14:48:58.350 回答