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");
はエンティティの list_id をCtListType
の Id 列にマップしますCTType
。list_id
エンティティCtListType
を の list_id 列にマップする必要がありますCTType
。教えてください。