gpt4 book ai didi

entity-framework - EF 4.1 Code First 多个结果集

转载 作者:行者123 更新时间:2023-12-03 07:33:25 24 4
gpt4 key购买 nike

我需要执行返回多个结果集的原始 SQL 查询。这在 EF CF 中可能吗?

谢谢!

最佳答案

描述

是的,你可以! ;) 您也可以在 Entity Framework Code First 中使用 DbCommand 执行原始 sql 查询。

您可以使用 SqlDataReader 类的 NextResult() 方法对多个结果集执行查询并跳转到下一个结果集。

示例

namespace MyNamespace
{
public class MyDbContext : DbContext
{

}

public class Test
{
public void Test()
{
MyDbContext context = new MyDbContext();

DbCommand db = context.Database.Connection.CreateCommand();
db.CommandText = "SELECT propertie1 FROM Table1; SELECT propertie1 from Table2";
try
{
DbDataReader reader = db.ExecuteReader();

while (reader.Read())
{
// read your data from result set 1
string value = Convert.ToString(reader["propertie1"]);
}

reader.NextResult();

while (reader.Read())
{
// read your data from result set 2
string value = Convert.ToString(reader["propertie1"]);
}
}
catch
{
// Exception handling
}
finally
{
if (db.Connection.State != ConnectionState.Closed)
db.Connection.Close();
}
}
}
}

更多信息

关于entity-framework - EF 4.1 Code First 多个结果集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8315507/

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