“用户''登录失败。”

时间:2013-12-15 15:19:03

标签: c# wcf entity-framework

我有一个WCF服务,我添加了一个数据库,我正在使用EF,但是当我尝试连接到数据库时,我遇到了这个问题......

public Producenci GetProducent(int id)
{
    dbMagazynierEntities context = new dbMagazynierEntities();
    context.Database.Connection.Open();

    var producent_entity = (from p in context.Producenci
                            where p.ID == id
                            select p).FirstOrDefault();

    context.Dispose();

    if (producent_entity != null)
    {
       return TranslateProducentEntity2Producent(producent_entity);
    }
    else
    {
       throw new Exception("error");
    }
}

我得到了

  

用户'登录失败。'

这是我的CS

<connectionStrings><add name="dbMagazynierEntities" connectionString="metadata=res://*/MagazynierEntity.csdl|res://*/MagazynierEntity.ssdl|res://*/MagazynierEntity.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=PIOTR-TOSH\Piotr;initial catalog=dbMagazynier;integrated security=false;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /></connectionStrings></configuration>

0 个答案:

没有答案