参照テーブル(Products、Stores、StoreProducts)を介してマップされた一連のテーブルがあります
テーブル
Table: Product
---------------
Name
Id
Desc
Table: Stores
---------------
Name
Id
ZipCode
Table: StoreProduct
---------------
Id
StoreId
ProductId
isAvailable
ShelfID
モデル
public class Store
{
public int Id {get;set;}
public string Name {get;set;}
public List<Product> Products {get;set;}
}
public class Product
{
public int Id {get;set;}
public string Name {get;set;}
public bool isAvailable {get;set;}
public int ShelfId {get;set}
public List<Store> Stores {get;set;}
}
マッピング
public class StoreMap: ClassMap<Store>
{
public StoreMap()
{
Id(x => x.Id);
Map(x => x.Name).Length(255).Nullable();
HasMany(x => x.Products)
.Table("StoreProduct")
.ParentKeyColumn("StoreId")
.ChildKeyColumn("ProductId");
}
}
public class ProductMap: ClassMap<Product>
{
public ProductMap()
{
Id(x => x.Id);
Map(x => x.Name).Length(255).Nullable();
HasMany(x => x.Stores)
.Table("StoreProduct")
.ParentKeyColumn("ProductId")
.ChildKeyColumn("StoreId");
}
}
FluentNHibernateルックアップテーブルを見ましたが、これを構造に適用する方法がわかりません。私は正しい方向に進んでいますか?Fluent Mappingを使用してStoreProductテーブルを各ドメインモデルにマッピングするにはどうすればよいですか?
次に、参照ルックアップテーブルから子テーブルに列をマップするにはどうすればよいですか(isAvailable列を参照)。