我正在尝试使用 EF4 为我的博客创建迁移,但我不确定如何使用通用集合声明字段,例如Posts
. 如何才能做到这一点?使用智能感知时,没有可用于声明属性的泛型类型。
CreateTable("Blogs", t => new
{
Id = t.Int(false, true),
Title = t.String(),
BloggerName = t.String(),
Posts = t.ICollection<Post>() //no ICollection
}).PrimaryKey(k => k.Id);