从 Massive 返回多个数据库表
我想知道是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论