gpt4 book ai didi

entity-framework - EF6 数据库首先使存储过程异步

转载 作者:行者123 更新时间:2023-12-05 03:15:11 27 4
gpt4 key购买 nike

在异步模式下运行 EF6 存储过程(数据库优先)的正确方法是什么?

我阅读了关于 ToListAsync() 的内容,但我没有看到它在存储过程中可用。

当实际调用返回 (#1) OUT 参数或 (#2) 项目列表时,也不确定是否有不同的方式调用存储过程:

案例 #1

 using (DBContext db = new DBContext())
{
ObjectParameter result = new ObjectParameter("Result",
typeof(global::System.Boolean));

db.Login("email@email.com", "password", result);
}

案例#2

 using (DBContext db = new DBContext())
{
var result = db.Contact_GetList("New York");
}

感谢帮助

最佳答案

根据这个workitem您需要使用 SqlQueryAsync。欢迎在 EF Codeplex 网站上为工作项目投票。

关于entity-framework - EF6 数据库首先使存储过程异步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19915050/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com