gpt4 book ai didi

c# - 从 EF6 迁移到 EF Core 2.0

转载 作者:太空狗 更新时间:2023-10-29 17:37:38 26 4
gpt4 key购买 nike

我刚刚开始将使用 EF6x 的 MVC5 项目迁移到 MVC Core 和 EF Core,但我的实体配置存在很大问题。如何将 EF6 Fluent 配置迁移到 EF 核心?
如果可能的话,我需要一个带 sample 的指南。

这是我的一个映射类和我的尝试

实体映射配置

public interface IEntityMappingConfiguration
{
void Map(ModelBuilder b);
}

public interface IEntityMappingConfiguration<T> : EntityMappingConfiguration where T : class
{
void Map(EntityTypeBuilder<T> builder);
}

public abstract class EntityMappingConfiguration<T> : EntityMappingConfiguration<T> where T : class
{
public abstract void Map(EntityTypeBuilder<T> b);

public void Map(ModelBuilder b)
{
Map(b.Entity<T>());
}
}

public static class ModelBuilderExtenions
{
private static IEnumerable<Type> GetMappingTypes(this Assembly assembly, Type mappingInterface)
{
return assembly.GetTypes().Where(x => !x.IsAbstract && x.GetInterfaces().Any(y => y.GetTypeInfo().IsGenericType && y.GetGenericTypeDefinition() == mappingInterface));
}

public static void AddEntityConfigurationsFromAssembly(this ModelBuilder modelBuilder, Assembly assembly)
{
var mappingTypes = assembly.GetMappingTypes(typeof(IEntityMappingConfiguration<>));
foreach (var config in mappingTypes.Select(Activator.CreateInstance).Cast<IEntityMappingConfiguration>())
{
config.Map(modelBuilder);
}
}
}

数据库上下文

public class CommerceServiceDbContext : AbpDbContext
{
public CommerceServiceDbContext(DbContextOptions<CommerceServiceDbContext> options)
: base(options)
{
}

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.AddEntityConfigurationsFromAssembly(GetType().Assembly);
}
}

简单的旧配置

public partial class AffiliateMap : EntityMappingConfiguration<Affiliate>
{
public override void Map(EntityTypeBuilder<Affiliate> b)
{
b.ToTable("Affiliate");
b.HasKey(a => a.Id);
b.HasRequired(a => a.Address).WithMany().HasForeignKey(x => x.AddressId).WillCascadeOnDelete(false);
}
}

我的尝试

public partial class AffiliateMap : EntityMappingConfiguration<Affiliate>
{
public override void Map(EntityTypeBuilder<Affiliate> b)
{
b.ToTable("Affiliate");
b.HasKey(a => a.Id);
b.HasOne(a => a.Address)
.WithMany().HasForeignKey(x => x.AddressId).IsRequired().OnDelete(DeleteBehavior.Restrict);
}

}

我已经使用 Google 搜索和 Microsoft 文档完成了这项工作。但我不确定我的工作。因为我有 +100 个配置类,所以在继续之前我会问你。如果我的问题内容不符合网站的条款和条件,我深表歉意。

最佳答案

我找到了一篇关于迁移到 EF 核心的好文章。我想分享这个问题,并为像我这样的初学者保留这个问题。

代码更新
命名空间 System.Data.Entity替换为 Microsoft.EntityFrameworkCore
HasDatabaseGeneratedOption(DatabaseGeneratedOption.None)替换为 ValueGeneratedNever();
DbContext 的基础构造函数连接字符串没有单个字符串参数。我们现在必须注入(inject) DbContextOptions
OnModelCreating(DbModelBuilder modelBuilder)变成 OnModelCreating(ModelBuilder modelBuilder) .简单的改变,但还是一样
modelBuilder.Configurations.AddFromAssembly(Assembly.GetExecutingAssembly());不再可用,这意味着 EntityTypeConfiguration也不可用,所以我不得不将所有实体配置移动到 OnModelCreating
((IObjectContextAdapter)context).ObjectContext.ObjectMaterialized不再被提供。我用它来扩展 DbContext将输出中的所有日期转换为 Utc。我还没有找到替代品。
ComplexType不再被提供。我不得不稍微更改模型结构以适应这种情况。
MigrateDatabaseToLatestVersion不再可用,所以我不得不将以下内容添加到我的 startup.cs

using (var serviceScope = app.ApplicationServices.GetRequiredService<IServiceScopeFactory>().CreateScope())
{
serviceScope.ServiceProvider.GetService<SbDbContext>().Database.Migrate();
}

WillCascadeOnDelete(false)变成 OnDelete(DeleteBehavior.Restrict)
HasOptional根据帖子不再相关
IDbSet变成 DbSet
DbSet<T>.Add()不再返回 T但是EntityEntry<T>

var entry = context.LearningAreaCategories.Add(new LearningAreaCategory());
//that's if you need to use the entity afterwards
var entity = entry.Entity;

IQueryable<T>.Include(Func<>)现在返回 IIncludableQueryable<T,Y>而不是 IQueryable<T> , 同样适用于 OrderBy .我所做的是将所有 include 和 orderby 移到最后。

来源:Moving from EF6 to EF Core

关于c# - 从 EF6 迁移到 EF Core 2.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49147369/

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