Created
September 26, 2012 19:36
-
-
Save g0t4/3790082 to your computer and use it in GitHub Desktop.
Mapping a collection of Guids in FluentNHibernate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Approved | |
{ | |
public virtual Guid Id { get; set; } | |
public virtual IEnumerable<Guid> EntryIds { get; set; } | |
} | |
// Mapping, Table specifies the table name to use, element specifies the column the Guid is stored in, KeyColumn specifies the foreign key in the table to link back to the parent Approved item | |
HasMany(x => x.EntryIds) | |
.Table("ApprovedEntryIds") | |
.Element("EntryId") | |
.KeyColumn("ApprovedId") | |
.Cascade | |
.AllDeleteOrphan() | |
.Not.LazyLoad() | |
.BatchSize(1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment