0
public class CTTypeMap :Enity<CTTypeMap>
{
public CTTypeMap()
{
Id(x => x.ID);
Map(x => x.createdOn);
Map(x => x.list_id);
References(x = x.CtListType).Column("list_id");
}
}
在上面的代碼行中,語句References(x = x.CtType).Column("list_id");
映射實體CtListType
的到的CTType
Id列的LIST_ID。 我需要將實體CtListType
的list_id
映射到CTType
的list_id列。 請讓我知道。流利nhiberate參考鍵字
是否要映射實體CtListType和屬性list_id?另外,另一個問題:Enity是來自ClassMap的派生類嗎? –
是的..(對於這兩個問題) – user1618587