Skip to content

Instantly share code, notes, and snippets.

@hagbarddenstore
Created July 30, 2013 13:16
Show Gist options
  • Save hagbarddenstore/6112800 to your computer and use it in GitHub Desktop.
Save hagbarddenstore/6112800 to your computer and use it in GitHub Desktop.
Bag<Guid> ("_attendees", x =>
{
x.Key (k => {
k.Column ("LessonId");
});
x.Access (Accessor.Field);
x.Table ("LessonAttendees");
},
x => x.Element (m => m.Column ("AttendeeId")));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment