我在web.config
中定义了一个EF连接字符串,但出于某种原因我想使用.NET SQL Client。有没有办法使用EF连接字符串?
答案 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;