ADO.NET Data model and JSON
Posted
by ognjenb
on Stack Overflow
See other posts from Stack Overflow
or by ognjenb
Published on 2010-05-17T18:25:37Z
Indexed on
2010/05/17
18:30 UTC
Read the original article
Hit count: 119
public ActionResult Example()
{
var q = from i in proba.name
select i;
return View();
}
How with this data make Json data and put them to table (on some View - no strongly typed)
© Stack Overflow or respective owner