使用ASP.NET MVC 5中的实体框架中的存储过程从多个表中获取多个记录

时间:2017-07-17 14:20:51

标签: asp.net-mvc entity-framework

create procedure GetCityArea
as
begin
    select * from CityMaster;
    select * from Area;
End

这是我的存储过程GetCityArea,它返回多条记录。

我的确切问题是我从存储过程中获取多条记录,并且我想在单个视图中将此结果显示为单独的表。我是ASP.NET MVC的新手,我想使用Entity Framework解决这个问题。请帮忙。

1 个答案:

答案 0 :(得分:2)

You can do this using ObjectContext and the Translate method.

The gory details are here: https://msdn.microsoft.com/en-us/data/jj691402.aspx