How can I map this:
public class Customer
{
   private IList<Order> _orders;
   public IEnumerable<Order> 
   GetAllOrders()
   {
      return _orders;     
   }
}
On the project page are some samples but none is about this situation. There is this sample:
// model   
public class Account   
{   
  private IList<Customer> customers = new List<Customer>();   
  public IList<Customer> Customers   
  {   
    get { return customers; }   
  }   
}
// mapping   
HasMany(x => x.Customers)   
  .Access.AsCamelCaseField();
But it assumes that Account has public field Customers and that scenario is different as mine. I tried some possible options but none works:
HasMany(x => Reveal.Propertie("_orders"))
Private fields works fine in simple property mapping but collection mapping is quite different. Any idea? Thanks