The Entity Framework provider type ‘System.Data.Entity.SqlServer.SqlProviderServices, EntityFramewor

错误的相信信息如下描述:

An exception of type ‘System.InvalidOperationException’ occurred in mscorlib.dll but was not handled in user code
Additional information: The Entity Framework provider type ‘System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer’ registered in the application config file for the ADO.NET provider with invariant name ‘System.Data.SqlClient’ could not be loaded. Make sure that the assembly-qualified name is used and that the assembly is available to the running application. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information.

截图如下
在这里插入图片描述
查看项目引用,发现少了对应的DLL
在这里插入图片描述
查看bin目录下,确实少了DLL文件
在这里插入图片描述
解决方法:只添加 EntityFramework.SqlServer.dll 即可
在这里插入图片描述

要使用 System.Data.Entity DbContext 创建 SQLite 数据库和数据表,您需要安装两个 NuGet 包: 1. System.Data.SQLite.Core:提供 SQLite 数据库的核心功能。 2. System.Data.SQLite.EF6:提供 Entity Framework 6 的 SQLite 数据提供程序。 安装 NuGet 包后,您可以使用以下步骤创建 SQLite 数据库和数据表: 1. 在应用程序中创建一个派生自 DbContext 的类。例如: ```csharp using System.Data.Entity; public class MyDbContext : DbContext { public MyDbContext() : base("MyConnectionString") { } public DbSet<MyEntity> MyEntities { get; set; } } ``` 2. 在应用程序的配置文件(如 app.config 或 web.config)中添加连接字符串。例如: ```xml <connectionStrings> <add name="MyConnectionString" connectionString="Data Source=MyDatabase.sqlite" providerName="System.Data.SQLite.EF6" /> </connectionStrings> ``` 3. 在应用程序启动时,将数据库初始化为最新模型。例如: ```csharp Database.SetInitializer(new CreateDatabaseIfNotExists<MyDbContext>()); ``` 4. 在 DbContext 中定义实体类。例如: ```csharp public class MyEntity { public int Id { get; set; } public string Name { get; set; } } ``` 5. 在 DbContext 中使用 DbSet 属性定义数据表。例如: ```csharp public DbSet<MyEntity> MyEntities { get; set; } ``` 6. 使用 DbContext.SaveChanges() 方法保存更改。例如: ```csharp using (var context = new MyDbContext()) { var entity = new MyEntity { Name = "Test" }; context.MyEntities.Add(entity); context.SaveChanges(); } ``` 这样就可以使用 System.Data.Entity DbContext 创建 SQLite 数据库和数据表了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值