I am trying to use ExtJS with Asp.Net MVC, and it is going fine so far. (Nice work on ExtJS)
To make things easier, I need some help returning data from .net to ExtJS.
public JsonResult Index()
{
var json = new
{
success = true,
data = from user in repository.FindAllUsers().AsQueryable()
select new
{
id = user.Id,
name = user.Name,
...
}
};
return Json(json);
}