Are there any decent articles on the Internet that explain in detail how conventions work in EF 4.1? There was an article related to Scott Gugβs blog, but it was dated 2010, I think it was then in CTP 4. Not sure if the agreements have changed since then. But I donβt understand how it works. For example, how does he know to use the SkillType table if I have this code (what is he looking for?):
public DbSet<SkillType> SkillTypes { get; set; }
This is just one of my perplexities, then there are foreign keys, primary keys, etc. I need to read these conventions so that any goof articles I can read let me know. I did Google and could not get anything solid and concrete.
source share