gpt4 book ai didi

c# - 使用 Entity Framework 添加具有读/写操作和 View 的 Controller 会导致警告

转载 作者:行者123 更新时间:2023-11-30 12:47:59 24 4
gpt4 key购买 nike

您好,我正在按照本教程中的步骤操作:

http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application

当我尝试添加使用我的模型之一的 Controller 时,我收到此警告:

enter image description here

这是基于我尝试创建 Controller 的女巫的模型:

public class Student
{
public int StudentID { get; set; }
public string LastName { get; set; }
public string FirstMidName { get; set; }
public DateTime EnrollmentDate { get; set; }
public virtual ICollection<Enrollment> Enrollments { get; set; }
}

这是我在尝试创建它时添加的设置:

enter image description here

我不太确定那个警告在说什么,所以我不知道我是否发布了解决问题所需的正确信息。如果需要其他任何信息,我会稍后发布。

我该如何解决这个问题?

最佳答案

出于某种原因,将提供程序从 System.Data.SqlServerCe.4.0 更改为 System.Data.SqlClient 似乎可以解决此问题。

关于c# - 使用 Entity Framework 添加具有读/写操作和 View 的 Controller 会导致警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15246240/

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