我如何用实体框架具体说明在同一桌子上的真象?
My table Items has the following fields: - Id (uniqueidentifier) - ThreadId (uniqueidentifier) - Created (datetime) - Text (nvarchar(max))
My model Item : - Id (Guid) - ThreadId (Guid) - Created (DateTime) - Text (string) - ChildItems (Icollection)
我怎样才能建立这种关系 让ChildTrojects 持有这些物品 与 Id = TreadId?