主键,实体框架类的外键

时间:2014-04-08 03:41:52

标签: asp.net entity-framework entity-framework-4 entity-framework-5 entity-framework-4.1

对于这堂课:

 public class Movie   {
 public int MovieId { get; set; }
 public string Title { get; set; }
 public int Rating { get; set; }
 public int ProducerID { get; set; }
 public Producer Producer { get; set; }
     }

我只想知道当Entity Framework将此类映射到相应的数据库表时,哪一个将用作主键?

哪一个是外键?

0 个答案:

没有答案
相关问题