Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class DealMapping : ClassMap<Deal>
  2. {
  3. public DealMapping()
  4. {
  5. Table("Specials"); // Maps Deal entities to a table 'Specials'
  6. Id(x => x.ID).GeneratedBy.Assigned();
  7. Map(x => x.DealName);
  8. }
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement