Have a look to those IsXYZ accepting a Func<p, declared, result> In your case to this public void IsPersistentProperty(Func<MemberInfo, bool, bool> match)
Take care because it is just one method (not as in ConfORM), that mean that you have to exclude all properties in one implementation.... but don't forget that this is OOP so you can: - inherit from ConventionModelMapper - add a method ExcludeProperty<TEntity>(Expression<Func<TEntity, object>> property) - in ExcludeProperty add those explicit exclusion to a collection - implements IsPersistentProperty(Func<MemberInfo, bool, bool> match) checking your collection -- You received this message because you are subscribed to the Google Groups "nhusers" 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/nhusers?hl=en.
