sql客户端的实体框架连接字符串

时间:2014-09-17 17:54:48

标签: entity-framework

我在web.config中定义了一个EF连接字符串,但出于某种原因我想使用.NET SQL Client。有没有办法使用EF连接字符串?

1 个答案:

答案 0 :(得分:0)

// Add a reference at the top of your code file

using System.Configuration;

// Within the code body set your variable

string cs = ConfigurationManager.ConnectionStrings["connectionStringName"].ConnectionString;