FluentNHibernate Overrides: UseOverridesFromAssemblyOf non-generic version
- by ThiagoAlves
Hi,
I have a repository class that inherits from a generic implementation:
public namespace RepositoryImplementation {
public class PersonRepository : Web.Generics.GenericNHibernateRepository<Person>
}
The generic repository implementation uses Fluent NHibernate conventions. They're working fine. One of those conventions is that all…