- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
有没有一种方法可以为 Required、MaxLength 和 HasColumn 组合多个属性,或者我是否需要为每个属性创建一个?
我希望能够包括多个必填字段,并为它们分配相同的 MaxLength,而不是像我现在在下面做的那样为实体中的每个字段创建一个新字段。
public class DataEntryContext : DbContext
{
public DataEntryContext(DbContextOptions<DataEntryContext> options)
:base (options)
{ }
public DbSet<Employee> Employees { get; set; }
public DbSet<Department> Departments { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Employee>()
.HasKey(e => e.EmpId);
modelBuilder.Entity<Employee>()
.Property(e => e.EmpFirstName)
.HasColumnType("varchar(50)")
.HasMaxLength(50)
.IsRequired();
modelBuilder.Entity<Employee>()
.Property(e => e.EmpLastName)
.HasColumnType("varchar(50)")
.HasMaxLength(50)
.IsRequired();
modelBuilder.Entity<Employee>()
.Property(e => e.EmpPhoneNumber)
.HasColumnType("varchar(10)")
.HasMaxLength(10)
.IsRequired();
modelBuilder.Entity<Employee>()
.Property(e => e.EmpStartDate)
.HasColumnType("datetime")
.IsRequired();
modelBuilder.Entity<Department>()
.HasKey(d => d.DeptId);
modelBuilder.Entity<Department>()
.Property(d => d.DeptName)
.HasColumnType("varchar(50)")
.HasMaxLength(50)
.IsRequired();
}
}
最佳答案
当然可以,您只需要自己编写代码即可。例如,我编写了一个 EntityTypeConfigurationExtensions
,它允许您在一次调用而不是多次调用中配置具有多个属性的实体。我不明白为什么您不能修改我的代码以使用 params
然后您可以传递多个属性:
(您必须先设置 propertyConfiguration,然后设置 propertyExpression)
public static class EntityTypeConfigurationExtensions
{
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, byte[]>> propertyExpression,
Func<BinaryPropertyConfiguration, BinaryPropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, Guid>> propertyExpression,
Func<PrimitivePropertyConfiguration, PrimitivePropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, Guid?>> propertyExpression,
Func<PrimitivePropertyConfiguration, PrimitivePropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, TimeSpan?>> propertyExpression,
Func<DateTimePropertyConfiguration, DateTimePropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, TimeSpan>> propertyExpression,
Func<DateTimePropertyConfiguration, DateTimePropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, DateTimeOffset?>> propertyExpression,
Func<DateTimePropertyConfiguration, DateTimePropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, DateTimeOffset>> propertyExpression,
Func<DateTimePropertyConfiguration, DateTimePropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, DateTime?>> propertyExpression,
Func<DateTimePropertyConfiguration, DateTimePropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, DateTime>> propertyExpression,
Func<DateTimePropertyConfiguration, DateTimePropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, decimal?>> propertyExpression,
Func<DecimalPropertyConfiguration, DecimalPropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, decimal>> propertyExpression,
Func<DecimalPropertyConfiguration, DecimalPropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
public static EntityTypeConfiguration<TEntityType> Property<TEntityType>(
this EntityTypeConfiguration<TEntityType> instance,
Expression<Func<TEntityType, string>> propertyExpression,
Func<StringPropertyConfiguration, StringPropertyConfiguration> propertyConfiguration)
where TEntityType : class
{
propertyConfiguration(instance.Property(propertyExpression));
return instance;
}
}
现在这个:
modelBuilder.Entity<Employee>()
.HasKey(e => e.EmpId);
modelBuilder.Entity<Employee>()
.Property(e => e.EmpFirstName)
.HasColumnType("varchar(50)")
.HasMaxLength(50)
.IsRequired();
modelBuilder.Entity<Employee>()
.Property(e => e.EmpLastName)
.HasColumnType("varchar(50)")
.HasMaxLength(50)
.IsRequired();
modelBuilder.Entity<Employee>()
.Property(e => e.EmpStartDate)
.HasColumnType("datetime")
.IsRequired();
现在是:
modelBuilder.Entity<Employee>()
.HasKey(e => e.EmpId)
.Property(e => e.EmpFirstName,
p => p.HasColumnType("varchar(50)")
.HasMaxLength(50)
.IsRequired())
.Property(e => e.EmpLastName,
p => p.HasColumnType("varchar(50)")
.HasMaxLength(50)
.IsRequired())
.Property(e => e.EmpStartDate,
p => p.HasColumnType("datetime")
.IsRequired());
因此修改我的代码以使用 params
并更新 plumping 以仅循环遍历参数将产生:
modelBuilder.Entity<Employee>()
.HasKey(e => e.EmpId)
.Property(p => p.HasColumnType("varchar(50)")
.HasMaxLength(50)
.IsRequired(),
e => e.EmpFirstName,
e => e.EmpLastName);
.Property(p => p.HasColumnType("datetime")
.IsRequired(),
e => e.EmpStartDate,);
关于c# - 配置 modelBuilder 一次组合多个属性配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38486253/
我刚刚开始研究 Entity Framework 代码优先方法,我在下面编写了两种方法并且都运行良好。 请告诉我这两种方法背后的核心概念是什么,应该遵循什么? 方法 1:使用 EntityTypeCo
当前升级到 Net 6 后出现构建错误 Error CS8795 Partial method 'XXXX.OnModelCreatingPartial(ModelBuilder)' must hav
我将 EF Core 与代码优先一起使用,并且我有模型公司 public class Company { public Guid Id { get; set; } pub
有没有一种方法可以为 Required、MaxLength 和 HasColumn 组合多个属性,或者我是否需要为每个属性创建一个? 我希望能够包括多个必填字段,并为它们分配相同的 MaxLength
在我的第一个 libgdx 3D 游戏中,我现在从 createBox 切换到 createRect,仅创建可见面(如果一堵墙位于另一堵墙的左侧,它的右脸是看不见的......)。我正在创建 4 个模
我正在覆盖 OnModelCreating , 在方法中有 base.OnModelCreating(modelBuilder); 行 protected override void OnModelC
在我的 libgdx android 应用程序中,我使用以下代码创建箭头 @Override public void onAxonConnected(Pos one, Pos two) { M
我正在尝试实现一个 Multi-Tenancy 应用程序,我通过租户对象查询数据库,而不是直接脱离上下文。在我有这个之前: public User GetUserByEmail(string emai
这是 this answer 的延续. 我正在尝试使用 maven-model-builder 以编程方式访问 pom.xml 的完整有效 pom 。目前,我因需要创建 MavenResolver 对
我想即时将域类型添加到上下文中。重写 OnModelCreating ,添加类型和配置添加的类型是我假设的非常自然的方式: public MyContext : DbContext { pro
我有以下生成 3D 立方体的代码片段: ModelBuilder modelBuilder = new ModelBuilder(); box = modelBuilder.createBox(2f,
我是 LibGDX 3D 工具的新手,我想知道如何合并使用 ModelBuilder#createCylinder 创建的两个圆柱体类。我有两个模型实例: 第一个是白色圆柱体, 第二个是具有相同属性的
有many questions关于在 Entity Framework 中播种多对多关系。不过大部分都非常老了,多对多的行为有changed significantly in EFCore5 . of
我正在使用 Entity Framework 开发 ASP MVC 应用程序。我正在考虑编写代码来缓存 ModelBuilder 返回的对象(正如几个来源所推荐的那样),但后来我在 Scott Gu
好的,所以在 Entity Framework 6 中,我会在一条语句中生成 key 和属性数据库: modelBuilder.Entity() .HasKey(x =
在 EntityFramework 6.x 中,如果我们有很多 EntityConfiguration 类,那么我们可以在 OnModelCreating(ModelBuilder modelBuil
在step 7 of the ASP.MVC 3 Tutorial ,它引入了“ModelBuilder”类型。我使用的是 ASP.Net 4、MVC 3 和 EF 4.1,我在“ModelBuild
在一个新的asp.net core 3.1项目中返回上面的错误信息。我有一个根据 Text 配置的多对多关系 不确定为什么会发生这种情况,但我已将 EntityFrameworkCore 包添加到项目
我是 android 开发的新手,突然间我收到了以下信息错误:您使用的 Gradle 版本(Gradle 发行版“https://services.gradle.org/distributions/g
我想使用注释为 Entity Framework Core 中的属性设置默认值。问题是数据库没有设置默认值,因此该值没有传递到数据库层。 我想做类似 modelBuilder 的事情的 HasDefa
我是一名优秀的程序员,十分优秀!