我正在使用.NET MVC3項目的窗體身份驗證。我也爲此使用了EntityFramework。用戶處理非常簡單。雖然問題是,我如何將用戶與模型相關聯?將窗體身份驗證用戶關聯到模型
說我有一個簡單的樁模型:
public class Post
{
public int ID { get; set; }
public string Title { get; set; }
public string Text { get; set; }
public DateTime Updated { get; set; }
//public MembershipUser Author { get; set; }
}
注意的作者字段。我如何將用戶鏈接到它?