标签: .net-core entity-framework-core ef-core-2.2
我的应用程序需要一种方法来调用sproc并从中获取随机数据。因为我正在使用BreezeJS,所以不能使用DbQuery(或无键DbSet)。
DbQuery
DbSet
我put together a method将使用DbCommand执行查询。但是,它使用以下代码:
DbCommand
var conn = efCoreContext.Database.GetDbConnection(); conn.Open();
我知道进行任何类型的连接都容易出错。我特别想知道是否: