我是MVC的新手。我对处理多个结果集有疑问。
SP返回多个结果集。我需要将它与不同的模型绑定。
我不能不使用EF。
最好的方法是什么?
示例:
create proc prc_get_AllProducts
as
begin
select * from Products
select * from distributors where id in(select distributorid from Products)
end
我需要将上述过程的结果绑定到不同的模型。 第一个结果集应该绑定到Products Model 第二个结果集应该绑定到Distributors Model
让我知道最好的方法......