create procedure GetCityArea
as
begin
select * from CityMaster;
select * from Area;
End
这是我的存储过程GetCityArea
,它返回多条记录。
我的确切问题是我从存储过程中获取多条记录,并且我想在单个视图中将此结果显示为单独的表。我是ASP.NET MVC的新手,我想使用Entity Framework解决这个问题。请帮忙。
答案 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