Quantcast
Channel: ASP.NET / C# – Sam Lee's .NET Blog
Viewing all articles
Browse latest Browse all 15

nHibernate many to many with mapping table example

$
0
0

Set has many Skus

Sku has many Sets

DB table

Set <-> Setskus <-> Skus


mapping.HasManyToMany(m => m.Skus)
 .Table("SetSkus")
 .ParentKeyColumn("SetId")
 .ChildKeyColumn("SKUId")
 .Not.LazyLoad();

&nbsp;

mapping.HasMany(m => m.Images).Cascade.All();

mapping.HasManyToMany(m => m.Sets)
 .Table("SetSkus")
 .ParentKeyColumn("SKUId")
 .ChildKeyColumn("SetId")
 .Inverse()
 .Not.LazyLoad();



Viewing all articles
Browse latest Browse all 15

Trending Articles