连接字符串名称

时间:2018-08-31 11:30:02

标签: wcf connection-string dbcontext

我需要知道我应该在WCF服务的哪个位置编写一个类,该类与文件web.config(在<connectionString>中)的连接名称相同。

我想我必须写一些类似的东西:

public class EcdContext : DbContext
{
    public EcdContext() : base("Name=EcdContext")
    {}
}

但是我在:附近遇到错误,并且我不知道应该将代码放在哪里(在哪个文件中:接口或该接口的实现?)。

这是web.config文件中的连接字符串:

<add name="EcdContext" 
     connectionString="Data Source=NAMEdb;Initial Catalog=Ecd;Integrated Security=False;User ID=??;Password=??;Connect Timeout=120;Encrypt=True;TrustServerCertificate=False; PersistSecurityInfo = true" 
     providerName="System.Data.SqlClient" />

谢谢。

0 个答案:

没有答案