因此,我已经生成了所需的表,并且需要能够在程序启动时更改连接字符串。目前我的联系是
"metadata=res://*/entityframework.Model1.csdl|res://*/entityframework.Model1.ssdl
|res://*/entityframework.Model1.msl;provider=MySql.Data.MySqlClient;
provider connection string="server=localhost;User Id=myuserid;
password=12345678;database=databasename""
到目前为止我有什么
Get.designer.cs文件:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.EntityClient;
using Npgsql;
using System.Configuration;
using System.Data.Entity;
using System.Data.Entity.Validation;
using patientlist.entityframework;
using System.Xml;
namespace patientlist
{
public partial class Get : Form
{
Timer update = new Timer();//60000 = 1min
public Get()
{
InitializeComponent();
} ....
private void Timer(object sender, EventArgs e)
{
string connectionString = "metadata=res://*/entityframework.Model1.csdl|res://*/entityframework.Model1.ssdl|res://*/entityframework.Model1.msl;provider=MySql.Data.MySqlClient;provider connection string="server=localhost;User Id=myuserid;password=12345678;database=databasename"";
using (var blah = new ltcsystemEntities())
{
blah.Database.Connection.ConnectionString = connectionString;
} .....
我使用的是EF5,首先是数据库(我从实体模型生成了一些自动化代码)
最佳答案
使用DB First,派生的DbContext
将作为局部类自动为您生成。
public partial class MyContext : DbContext
{
public MyContext()
: base("name=MyContext")
{
}
//...
}
注意,它如何包含一个无参数的构造函数,该构造函数调用方法签名的父构造函数:
public DbContext(string nameOrConnectionString)
;传递连接字符串的名称。这是应该在您的app.config中的连接字符串。如果需要更改连接字符串,则可以编写局部类以补充自动生成的类,并提供一个接受另一个app.config连接字符串或连接字符串本身名称的构造函数,然后将其传递给父构造函数。
public partial class MyContext
{
public MyContext(String nameOrConnectionString)
: base(nameOrConnectionString)
{
}
}
然后,您可以使用以下方法。
using(MyContext context = new MyContext(nameOrConnectionString))
{
//Do stuff
}
但是,如果要基于某些运行时值切换连接字符串,则可能会发现创建工厂类来处理
DbContext
的实例很有用。关于c# - 自定义连接字符串EF5,DB优先,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17458167/