Skip to content

Instantly share code, notes, and snippets.

@tunatoksoz
Created August 3, 2009 18:39
Show Gist options
  • Select an option

  • Save tunatoksoz/160747 to your computer and use it in GitHub Desktop.

Select an option

Save tunatoksoz/160747 to your computer and use it in GitHub Desktop.
public class MyEntityAuditMap:AuditClassMap<MyEntity>
{
public MyEntityAuditMap()
{
Audited();
NotAudited(x=>x.BlahBlah);
}
}
public class MyEntityAuditMap2:AuditClassMap<MyEntity2>
{
public MyEntityAuditMap()
{
Audited(x=>x.BlahBlah);
Audited(x=>x.BlahBlah2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment