Posted on: 6/26/2015 1:23:11 PM | Views : 611

I've This Kendo UI Grid and I'm populating the grid with the  vales from a couple of tables I've this GetBrands  Method and I can get vales from other tables as you can see in the given method what I can't get is the vale from the TemData["CompanyId"] how can I get CompanyName from This 
public ActionResult GetBrands([DataSourceRequest] DataSourceRequest request) { var result= new DataSourceResult(); IQueryable<Brand> brands = null; try { brands = db.Brands; result = brands.AsQueryable() .ToList() .Select(b => new BrandListViewModels() { ...

Go to the complete details ...