gpt4 book ai didi

c# - 2 个不同类中使用的拥有类型的 EF Core 配置问题

转载 作者:行者123 更新时间:2023-11-29 07:18:42 26 4
gpt4 key购买 nike

我正在使用 Entity Framework 核心,我想在 2 个不同的类中使用相同的拥有类型。这通常没问题,但在我的情况下出现错误。

我正在使用 MySql 数据库,要求所有 bool 值都映射到数据库中列类型为 tinyint(1) 的字段。为了在我的 OnModelCreating 方法中实现这一点,我循环遍历所有属性,如果该属性是 bool 值,我将其映射到 tinyint(1)。但是,一旦我在 2 个不同的类中使用相同的拥有类型,我就会收到错误消息。

下面我写了一个演示程序来展示我的问题。您只需要重新创建 2 个表、组织和联系人。两者都有字段 ID、街道和家庭。为了使用 MySQL,我安装了 nuget 包 MySql.Data.EntityFrameworkCore (v8.0.17)。我在 .net core 2.2 控制台应用程序中运行了代码。

using Microsoft.EntityFrameworkCore;
using System;
using System.Linq;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;

namespace MyDemo
{
class Program
{
static void Main(string[] args)
{
using(var ctx = new MyDbContext())
{
var contact = new Contact
{
Address = new Address
{
Street = "x",
Home = true
}
};
ctx.Contacts.Add(contact);
ctx.SaveChanges();
}
}
}


public class MyDbContext: DbContext
{
public MyDbContext()
{

}

protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseMySQL("{my connection string}");
base.OnConfiguring(optionsBuilder);
}

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Contact>()
.OwnsOne(p => p.Address,
a =>
{
a.Property(p => p.Street)
.HasColumnName("street")
.HasDefaultValue("");
a.Property(p => p.Home)
.HasColumnName("home")
.HasDefaultValue(false);
});

modelBuilder.Entity<Organisation>()
.OwnsOne(p => p.Address,
a =>
{
a.Property(p => p.Street)
.HasColumnName("street")
.HasDefaultValue("");
a.Property(p => p.Home)
.HasColumnName("home")
.HasDefaultValue(false);
});

var entityTypes = modelBuilder.Model.GetEntityTypes()
.ToList();

foreach (var entityType in entityTypes)
{
var properties = entityType
.GetProperties()
.ToList();


foreach (var property in properties)
{
if (property.PropertyInfo == null)
{
continue;
}

if (property.PropertyInfo.PropertyType.IsBoolean())
{
modelBuilder.Entity(entityType.ClrType)
.Property(property.Name)
.HasConversion(new BoolToZeroOneConverter<short>())
.HasColumnType("tinyint(1)");
}
}
}

base.OnModelCreating(modelBuilder);
}

public DbSet<Contact>Contacts { get; set; }
public DbSet<Organisation>Organisations { get; set; }
}

public class Contact
{
public int Id { get; set; }
public Address Address { get; set; }

//other contact fields
}

public class Organisation
{
public int Id { get; set; }
public Address Address { get; set; }

//other organisation fields
}

public class Address
{
public string Street { get; set; }
public bool Home{ get; set; }
}

public static class TypeExtensions
{
public static bool IsBoolean(this Type type)
{
Type t = Nullable.GetUnderlyingType(type) ?? type;
return t == typeof(bool);
}
}
}

运行上述代码后,显示的错误消息是 System.InvalidOperationException:“无法将实体类型‘Address’添加到模型中,因为已存在同名的弱实体类型”。抛出错误的部分代码是这个位

if (property.PropertyInfo.PropertyType.IsBoolean())
{
modelBuilder.Entity(entityType.ClrType)
.Property(property.Name)
.HasConversion(new BoolToZeroOneConverter<short>())
.HasColumnType("tinyint(1)");
}

如何更改我的代码,使 OnModelCreating 方法无错误地运行,从而将联系人记录正确保存到数据库中?

最佳答案

更新(EF Core 3.x):

仍然没有获取EntityTypeBuilder的公共(public)方法,但至少构造函数参数已被修改为IMutableEntityType类型,所以只有

using Microsoft.EntityFrameworkCore.Metadata.Builders;

是需要的,现在对应的代码是

var entityTypeBuilder = new EntityTypeBuilder(entityType);

原始(EF Core 2.x):

问题是 ClrType 不足以识别拥有的实体类型,因此 modelBuilder.Entity(Type) 不能用于获取 EntityTypeBuilder 流畅配置实体属性所需的实例。

似乎在 EF Core 2.x 中没有很好的公共(public)方法来做到这一点,所以我只能建议使用一些 EF Core 内部(幸运的是,在典型的内部使用警告下可以公开访问)。

您需要以下using:

using Microsoft.EntityFrameworkCore.Metadata.Builders;
using Microsoft.EntityFrameworkCore.Metadata.Internal;

第一个用于 EntityTypeBuilder 类,第二个用于 AsEntityType() 扩展方法,它使您可以访问实现 IEntityType 的内部类>,尤其是 Builder 属性。

修改后的代码如下所示:

var entityTypes = modelBuilder.Model.GetEntityTypes()
.ToList();

foreach (var entityType in entityTypes)
{
var properties = entityType
.GetProperties()
.ToList();

// (1)
var entityTypeBuilder = new EntityTypeBuilder(entityType.AsEntityType().Builder);

foreach (var property in properties)
{
if (property.PropertyInfo == null)
{
continue;
}

if (property.PropertyInfo.PropertyType.IsBoolean())
{
entityTypeBuilder // (2)
.Property(property.Name)
.HasConversion(new BoolToZeroOneConverter<short>())
.HasColumnType("tinyint(1)");
}
}
}

关于c# - 2 个不同类中使用的拥有类型的 EF Core 配置问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57692369/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com