我在以下代码语句中使用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”中查询。
我该怎么做?
谢谢大家。