I got the error Message:
CS0120 - An object reference is required for the non-static field, method, or property 'StageDBEntities.Aufgaben'
My Code:
public ActionResult AufgabenDetails(int id)
{
var Aufgabe = StageDBEntities.Aufgaben.Find(id);
return View(Aufgabe);
}
This Code is on my Main Controller. With this i try to create a Site per Task(Aufgabe) in my Database. /AufgabenDetails/1 <-- one is the ID of my Task(Aufgabe)