0

我的本地机器上有一个数据库。我有一个 C# 应用程序,它使用 LINQ to SQL 将记录插入到这个数据库中。我使用 SSMS(SQL Server Management Studio)打开了数据库(并在查询窗口中选择了记录)。现在,如果我尝试运行 C# 应用程序,我会收到以下错误:

“Cannot open user default database. Login failed. Login failed for user DFGV\G16570'.”

当我重新启动系统时,此错误消失。

注意:我使用的是 Integrated Security=True

注意:SQL Server 使用“LocalSystem”帐户运行

LINQ 中的连接字符串:

 Data Source=.; AttachDbFilename=C:\DevTEST\Databases\LibraryReservationSystem.mdf;
 Integrated Security=True; Connect Timeout=30;User Instance=True

注意:“用户实例”关键字

以下是我的 LINQ 查询:

public virtual void InsertOnSubmit(T entity)
    {
        GetTable().InsertOnSubmit(entity);
        Context.SubmitChanges();
    }

当我通过 SSMS 连接到数据库时,我应该怎么做才能使 LINQ 工作?

编辑

根据响应,我更改了代码,如下所示。

   string connectionstring = "Data Source=.;Initial Catalog=LibraryReservationSystem;Integrated Security=True;Connect Timeout=30";

        using (var context = new RepositoryLayer.LibraryManagementClassesDataContext(connectionstring)) 
        {

            RepositoryLayer.Repository<RepositoryLayer.Account> selectedRepository = new RepositoryLayer.Repository<RepositoryLayer.Account>();
            selectedRepository.Context = context;
            AccountBusiness accountBl = new AccountBusiness(selectedRepository);

            //List<RepositoryLayer.Account> accountList = accountBl.GetAllAccounts();
            accountBl.InsertAccounts();
        }

注意:确保“用户实例”关键字未设置为 TRUE

4

1 回答 1

1

您正在使用AttachDbFilename选项打开数据库,这意味着数据库作为用户实例打开,只能由打开它的进程标识访问。

如果要从多个进程访问数据库,请将其附加到适当的 SQL Server 实例,然后通过 InitialCatalog 属性中的数据库名称连接到它。不要使用 AttachDbFileName 和 UserInstance。

这在将 SQL Server Express 与 ASP.NET 结合使用中进行了描述

于 2012-06-20T11:14:11.367 回答