在 EF Core 3.1 中替换 MapToStoredProcedures() 的最佳方法是什么?

问题描述

我已经将 EntityFramework 6 的项目实现到 EntityFramework Core 3.1 中。 使用 Roslyn API,我必须迁移实体框架的属性、类型和方法。现在我已经使用 MapToStoredProcedures

Sample.cs

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    modelBuilder.Entity<Student>()
            .MapToStoredProcedures(p => p.Insert(sp => sp.HasName("sp_InsertStudent").Parameter(pm => pm.StudentName,"name").Result(rs => rs.StudentId,"Id"))
                    .Update(sp => sp.HasName("sp_UpdateStudent").Parameter(pm => pm.StudentName,"name"))
                    .Delete(sp => sp.HasName("sp_DeleteStudent").Parameter(pm => pm.StudentId,"Id"))
            );
}

基于链接 https://github.com/dotnet/efcore/issues/245。 EF 核心不再支持,而且大多数堆栈溢出链接都建议使用 DbContext 方法。我不知道这个。

请就此提出替代解决方案以及如何在 Roslyn API 中进行操作?

解决方法

没有替代品。使用标准的 EF Core Save 更改。