例如,在将卡片与集合相关联时,我有:
public class Card
{
public virtual int CardId { get; set; }
// belongs to a Set
public virtual int SetId { get; set; }
public virtual Set Set { get; set; }
}
为什么我需要Set和SetId?
答案 0 :(得分:5)
您无需进行设置。您可以将“Set”指定为虚拟对象,以便在运行时使用navigational属性覆盖它。实体框架将自动在表上创建外键“SetId”,即使您无法从对象域模型访问它。
您不需要设置它,但我个人喜欢访问我的对象上的底层外键ID,因为我可以指定与int的关系,而不必实例化相关对象。
修改:添加示例代码
拥有以下课程:
public class Card
{
public virtual int CardId { get; set; }
// belongs to a Set
public virtual int SetId { get; set; }
public virtual Set Set { get; set; }
}
public class Set
{
public int SetId { get; set; }
public string SetName { get; set; }
}
我可以这样做:
var context = new Context(); //Db Code-First Context
var set = context.Sets.First(s => s.SetName == "Clubs"); //Get the "Clubs" set object
//Assign the set to the card
var newCard = new Card();
newCard.Set = set;
//Save the object to the databae
context.Cards.Add(newCard);
context.SaveChanges();
或者做这样的事情:
//Assign the set ID to the card
var newCard = new Card();
newCard.SetId = 4;
//Save the object to the databae
context.Cards.Add(newCard);
context.SaveChanges();
对象将以相同的方式存储。
想象一下,您正在将ViewModel发布到控制器。从视图而不是整个对象的下拉列表中传递选定的Id更容易。