Skip to content

Instantly share code, notes, and snippets.

@chester89
Created September 11, 2012 17:21
Show Gist options
  • Save chester89/3699969 to your computer and use it in GitHub Desktop.
Save chester89/3699969 to your computer and use it in GitHub Desktop.
Fluent NHibernate automapping issue
public class Customer
{
public int Id { get; set; }
public ICollection<Order> Orders { get; set; }
}
public class BigBoss
{
public string FullName { get; set; }
public ICollection<OrderInfo> Orders { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment