从 Massive 返回多个数据库表

发布于 2024-11-29 14:16:35 字数 679 浏览 0 评论 0原文

我想知道是否可以使用 Massive 调用多表存储过程并返回多个表。传统的方法是使用 ADO.NET 执行此操作,

SqlCommand command = new SqlCommand("UserAppData", conn);
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add("@UserID", SqlDbType.UniqueIdentifier).Value = (Guid)user.ProviderUserKey;
SqlDataAdapter adapter = new SqlDataAdapter(command);
DataSet ds = new DataSet();
adapter.Fill(ds);
DataTable dt0 = ds.Tables[0];
DataTable dt1 = ds.Tables[1];
DataTable dt3 = ds.Tables[2];
DataTable dt4 = ds.Tables[3];

理想的解决方案将执行存储过程,然后每个表都有动态对象(不同的表模式),按表命名。

如果这是不可能的,则将接受任何其他不使用 dt0.Rows[0]["ColumnName"] 语法而将这些表作为动态对象返回的解决方案。我正在寻找类似 dt0.Rows.First().UserId 的东西。

I'd like to know if it is possible to call a multi-table stored procedure using Massive and return multiple tables. The old-school way of doing this was as follows using ADO.NET

SqlCommand command = new SqlCommand("UserAppData", conn);
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add("@UserID", SqlDbType.UniqueIdentifier).Value = (Guid)user.ProviderUserKey;
SqlDataAdapter adapter = new SqlDataAdapter(command);
DataSet ds = new DataSet();
adapter.Fill(ds);
DataTable dt0 = ds.Tables[0];
DataTable dt1 = ds.Tables[1];
DataTable dt3 = ds.Tables[2];
DataTable dt4 = ds.Tables[3];

The ideal solution would execute the stored procedure and then have dynamic objects (different table schemas) per table, named by table.

If this isn't possible, any other solution that returns these tables as dynamic objects without using the dt0.Rows[0]["ColumnName"] syntax will be accepted. Something like dt0.Rows.First().UserId is what I'm looking for.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文