13

我正在尝试构建一个快速测试,每次运行时都会删除并重新创建数据库。我有以下内容:

[TestClass]
public class PocoTest
{
    private TransactionScope _transactionScope;
    private ProjectDataSource _dataSource; 
    private Repository _repository = new Repository();
    private const string _cstring = "Data Source=.;Initial Catalog=test_db;Trusted_Connection=True";

    [TestInitialize]
    public virtual void TestInitialize()
    {
        _dataSource = new ProjectDataSource(_cstring);
        _dataSource.Database.Delete();
        _dataSource.Database.CreateIfNotExists();
        _transactionScope = new TransactionScope();
    }
    [TestMethod]
    public void TestBasicOperations()
    {                
        var item = _repository.AddItem(new Item(){Details = "Test Item"});
        //  AddItem makes a call through the data context to add a set and then calls datacontext.SaveChanges()
    }


    [TestCleanup]
    public void TestCleanup()
    {
        // rollback
        if (_transactionScope != null)
        {
            _transactionScope.Dispose();
        }
    }

但是,当我运行测试时,出现以下错误:

结果消息:测试方法 Project.Repository.UnitTests.PocoTest.TestBasicOperations 抛出异常:System.Data.SqlClient.SqlException:多语句事务中不允许创建数据库语句。

ProjectDataSource 在这里:

public class ProjectDataSource : DbContext, IProjectDataSource
{

    public ProjectDataSource() : base("DefaultConnection")
    {

    }

    public ProjectDataSource(string connectionString) : base(connectionString)
    {

    }

    public DbSet<Set> Sets { get; set; }
}

存储库:

public class Repository : IRepository
{
    private readonly ProjectDataSource _db = new ProjectDataSource();
    public Item AddItem(Item item)
        {
            _db.Items.Add(item);
            _db.SaveChanges();
            return item;
        }
}

为什么会这样?

另外 - 如果它有任何区别 - 如果我在 TestMethod 中注释掉 AddItem 行,则不会发生错误。

4

6 回答 6

5

你也可以使用db.Database.ExecuteSqlCommand(TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);

有关详细信息,请参阅https://stackoverflow.com/a/24344654/375114

于 2016-04-08T10:56:45.137 回答
4

供您参考,此错误是设计使然,只要在活动事务中向Microsoft SQL Server发出不可事务的命令,就会发生此错误。

因此,解决方案是允许Database.CreateIfNotExists()在任何事务范围之外命中数据库。请记住,SQL Profiler是您的朋友。

您可以获得一个粗略更新的命令列表,这些命令不允许在事务中运行

注意:如果有人想知道我为什么要提供基于 Sybase 产品的列表,请记住 Microsoft SQL Server 与 Sybase 引擎共享其大部分基本基因。如需进一步阅读,请参阅https://en.wikipedia.org/wiki/Microsoft_SQL_Server

于 2016-11-07T22:07:15.863 回答
3

万一其他人遇到这个问题:

在我的 Repository 类中,我对通常标记为“dbContext”的内容有另一个定义 - ProjectDataSource。这意味着一个上下文是在我的测试类中创建的,而另一个上下文是在我的 Repository 对象中创建的。将连接字符串发送到我的 repo 类解决了这个问题:

在存储库中:

public class Repository : IRepository
    {
        private readonly ProjectDataSource _db;

        public Repository(string connectionString)
        {
            _db = new ProjectDataSource(connectionString);   
        }

        public Repository()
        {
            _db = new ProjectDataSource();   
        }

根据我的测试:

private TransactionScope _transactionScope;
        private Repository _repository;
        private ProjectDataSource _dataSource; 
        private const string _connectionString = "Data Source=.;Initial Catalog=test_db;Trusted_Connection=True";

        [TestInitialize]
        public virtual void TestInitialize()
        {
            _repository = new Repository(_connectionString);
            _dataSource = new ProjectDataSource(_connectionString);
            _dataSource.Database.Delete();
            _dataSource.Database.CreateIfNotExists();
            _transactionScope = new TransactionScope();
        }
于 2013-03-02T01:36:49.337 回答
3

您不能围绕某些 SQL 命令使用隐式提交。创建和删除数据库是一个示例 SQL 服务器将执行AUTOCommit

请参阅 MS SQL 帮助中的备注部分。 http://msdn.microsoft.com/en-us/library/ms176061.aspx

以及有关自动提交的更多信息... http://msdn.microsoft.com/en-us/library/ms187878%28v=sql.105%29

于 2013-03-02T09:46:03.740 回答
0

试试这个代码

使用 (TransactionScope ts = new TransactionScope(TransactionScopeOption.Suppress))

{
var sqlCommand = String.Format("创建数据库 [{0}]", "TempBackupDB"); _context.Database.ExecuteSqlCommand(TransactionalBehavior.DoNotEnsureTransaction, sqlCommand);

ts.Complete();

}

于 2018-08-14T07:38:14.190 回答
-1

您需要在包管理器控制台上运行Update-Database命令。

于 2021-03-24T11:27:43.037 回答