C# Entity Framework框架 Code First 模式 连接 SQL\Access\SQLite (组合式)

Web.config 配置文件很重要,有些蒙圈,自己稍微整理了下。看起来就简单些。

步骤一:

NuGet 给项目安装 Entity Framework。

步骤二:

NuGet给项目安装 JetEntityFrameworkProvider

步骤三:

添加数据库位置Web.config

<connectionStrings>
<!--Access--> <add name="AccessContext" connectionString="Provider=Microsoft.ACE.OleDb.12.0;Data Source=|DataDirectory|\AccessDataBase.accdb" providerName="JetEntityFrameworkProvider" />
<!--SQLite--> <add name="sqliteContext" connectionString="Data Source=|DataDirectory|\Sqlite.db3;" providerName="System.Data.SQLite.EF6" />
<!--SQL--> <add name="SqlContext" connectionString="server=.;database=demo;uid=sa;pwd=only" providerName="System.Data.SqlClient" /> </connectionStrings>

步骤四:

Web.config添加节点

<providers>
<!--SQL--> <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<!--Access--> <provider invariantName="JetEntityFrameworkProvider" type="JetEntityFrameworkProvider.JetProviderServices, JetEntityFrameworkProvider" />
<!--SQLite--> <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
<!--SQLite-->
<provider invariantName="System.Data.SQLite" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6"/>
</providers>

步骤五:

创建连库文件

public partial class BlContext : DbContext
    {
//可改为其他连接 或 动态
public BlContext() : base("SqlContext") { } public BlContext(string connectionName) : base(connectionName) { } public virtual DbSet<Entity.User> User { get; set; } }

声明:ACCESS数据库,创建的数据库中会自动根据实体类创建表,无需手动添加,修改列属性未测试。

OK.目前为止EF框架可适应连接Access\SQLite\SQL数据库的Code First 模式。

不喜勿喷,谢谢合作。

 

补充:

在使用ACCESS数据库时,更新表结构的时候如果出现以下字样(不懂英文)

System.InvalidOperationException:“The model backing the 'BlContext' context has changed since the database was created. Consider using Code 

如果出现这种字样的时候需要在Global.asax中添加以下代码:

protected void Application_Start(object sender, EventArgs e)
{
   Database.SetInitializer<DataBase.BlContext>(null);
}

这样就可以随意修改表结构喽。

 

转载于:https://www.cnblogs.com/OleRookie/p/8567153.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值