Skip to content

Instantly share code, notes, and snippets.

@srkirkland
Created July 29, 2010 18:40
Show Gist options
  • Save srkirkland/498878 to your computer and use it in GitHub Desktop.
Save srkirkland/498878 to your computer and use it in GitHub Desktop.
public DataNamMap()
{
Table("DataNams");
ReadOnly();
Id(x => x.Id).GeneratedBy.Guid();
Map(x => x.NamNumber);
Map(x => x.Department);
Map(x => x.Status);
Map(x => x.Building);
Map(x => x.Room);
Map(x => x.Vlan);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment