I am trying to implement a foreign key connection between the built-in User model and my models in ASP.NET MVC 3.
如何把所有权或其他一些角色分配给我模式所代表的各种条目。 我的模式如何看待:
public class Entry
{
public int Id { get; set; }
public string Value { get; set; }
public User Owner { get; set; }
public User SomeoneElse { get; set; }
}
在为用户寻找模式的地方,我需要进口什么? 还是有更好的办法实现这一目标?