Fabio, what is the bool property being passed in to Func<MemberInfo, bool, bool> ?
Thanks! -Michael On May 27, 5:23 am, Fabio Maulo <[email protected]> wrote: > 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.
