I've got an entity like this :
public class Course {
public CultureInfo Culture {get; set;}
:
}
And I want to map just the Name
property of CultureInfo
to a single column in the table that Entity Framework generates for me.
How would I go about this? Currently I've tried looking at the OnModelCreating() method of the DbContext, but I'm not finding anything that is standing out.
I'm using Entity Framework 4.1 in and MVC 3 application with a Code First approach.
Many thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…