Im trying to retrieve data from my database with Linq in ASP.NET MVC. but when I call the method in a different class, I get the compiler error code CS0176:"Member cannot be accessed with an instance reference; qualify it with a type name instead".
How I call the method:
public JsonResult RetrieveDataTable()
{
DatabaseHandler.DatabaseHandler dataName = new DatabaseHandler.DatabaseHandler();
var dataListAssets = dataName.GetDisciplines();
return Json(dataListAssets, JsonRequestBehavior.AllowGet);
//return null;
}
How the Method Looks like:
public static List<DisciplineVM2> GetDisciplines()
{
using (var db = new SPIESimpel_DEVEntities())
{
return db.tbl_Disciplines
.Select((x) => new DisciplineVM2() { ID = x.ID, Name = x.Name })
.ToList();
}
}
Does someone see whats wrong and can help me solve this problem?
Thanks in Advance
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…