.net核心单元测试中从InMemory数据库查询

时间:2018-11-10 10:22:58

标签: unit-testing asp.net-core .net-core in-memory-database

我在以下代码语句中使用UseInMemoryDatabase()函数:

var options = new DbContextOptionsBuilder<CRUDContext>()
            .UseInMemoryDatabase(databaseName: "DBTest1")
            .Options;

        // Run the test against one instance of the context
        using (var context = new CRUDContext(options))

现在我想从VS中的SQL Server对象资源管理器中查询“ DBTest1”,或者从Microsoft SQL Server Management Studio中的“ DBTest1”中查询。

我该怎么做?

谢谢大家。

0 个答案:

没有答案