Click here to Skip to main content
15,880,392 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello! i use Entity Framework. At result "var listOfUsers" i get dinamic object, that does not be display later at View. How it convert? (To list or etc)
Thank you for your fast help.
Posted
Comments
vaibhav10Dec1987 9-Apr-13 9:02am    
Can you elaborate your question or can you mention your sample code?
[no name] 9-Apr-13 10:20am    
Yes. This is my Controller:
public class UsersController : Controller
{

private UsersContext _db = new UsersContext();
private int ID;
CMSPIEntities1 context = new CMSPIEntities1();

public ActionResult Index()
{

var listOfUsers = (from x in context.CMSPI_CODICIACCESSO
join u in context.CMSPI_ANAGRAFICAINFOBASE on x.IDANAGRAFICA equals u.IDANAGRAFICA
select new
{
RowA = x,
RowB = u
});
ViewBag.users = listOfUsers;
return View();

}

}

This is my View:

@foreach(var drow in ViewBag.users)
{

drow.EMAIL; //Not display


}

_________
And at listOfUsers there are:

listOfUsers = {System.Data.Objects.ObjectQuery<<>f__AnonymousType0<cmspi.models.cmspi_codiciaccesso,cmspi.models.cmspi_anagraficainfobase>>}

{ RowA = {CMSPI.Models.CMSPI_CODICIACCESSO}, RowB = {CMSPI.Models.CMSPI_ANAGRAFICAINFOBASE} }

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900