How do I tell Automapping (using conventions?) to auto-create indexes
on n-to-n associations?

   public class ProductMap : IAutoMappingOverride<Product>
   {
      public void Override(AutoMapping<Product> mapping)
      {
          mapping.HasMany(x => x.Components).Index("...")
      }
   }

there's no Index() available. How do I index the Components.ProductId
field?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Fluent NHibernate" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/fluent-nhibernate?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to