(Running EntityFramework 4.1) I have a ASP .NET MVC 3 project that has a database with two database tables.
The models that express the database tables:
public class MyDetails
{
public int DetailsID {get;set;}
public string Description {get;set;}
public int
public CarID {get;set;}
public virtual Cars Cars {get;set;}
public PreviousCarID {get;set;}
}
public class Cars
{
public int CarsID {get;set;}
public string CarsName {get;set;}
}
Entity Framework will nicely relate the MyDetails.CarsID and the Cars.CarsID so that I can pull the CarsName. The issue is that I'm not sure how to relate PreviousCarID to the Cars table.
What I've tried (results in an Entity Framework error):
public PreviousCarID{get;set;}
[ForeignKey("PreviousCarID")]
public virtual Cars Cars2 {get;set;}
MyDetailsclass is messed up. Can you update? – LukeP May 16 '12 at 21:05