Namespaces

Types in FluentNHibernate.Automapping

Type AutoMap

Namespace FluentNHibernate.Automapping

Starting point for automapping your entities.

Methods

Public static methods

AutoPersistenceModel Assemblies(IAutomappingConfiguration cfg, IEnumerable<Assembly> assemblies)

Automatically map the classes in each assembly supplied.
Parameters
IAutomappingConfiguration cfg

Automapping configuration

IEnumerable<Assembly> assemblies

Assemblies containing classes to map

AutoPersistenceModel Assemblies(Assembly[] assemblies)

Automatically map the classes in each assembly supplied.
Parameters
Assembly[] assemblies

Assemblies containing classes to map

AutoPersistenceModel Assemblies(IAutomappingConfiguration cfg, Assembly[] assemblies)

Automatically map the classes in each assembly supplied.
Parameters
IAutomappingConfiguration cfg

Automapping configuration

Assembly[] assemblies

Assemblies containing classes to map

AutoPersistenceModel Assembly(Assembly assembly, Func<Type, bool> where)

Automatically map the classes in assembly.
Parameters
Assembly assembly

Assembly containing the classes to map

Func<Type, bool> where

Criteria for selecting a subset of the types in the assembly for mapping

AutoPersistenceModel Assembly(Assembly assembly, IAutomappingConfiguration cfg)

Automatically map the classes in assembly.
Parameters
Assembly assembly

Assembly containing the classes to map

IAutomappingConfiguration cfg

Automapping configuration

AutoPersistenceModel Assembly(Assembly assembly)

Automatically map the classes in assembly.
Parameters
Assembly assembly

Assembly containing the classes to map

AutoPersistenceModel AssemblyOf<T>(Func<Type, bool> where)

Automatically map classes in the assembly that contains .
Parameters
Func<Type, bool> where

Criteria for selecting a subset of the types in the assembly for mapping

AutoPersistenceModel AssemblyOf<T>()

Automatically map classes in the assembly that contains .

AutoPersistenceModel AssemblyOf<T>(IAutomappingConfiguration cfg)

Automatically map classes in the assembly that contains .
Parameters
IAutomappingConfiguration cfg

Automapping configuration

AutoPersistenceModel Source(ITypeSource source)

Automatically map the classes exposed through the supplied ITypeSource.
Parameters
ITypeSource source

ITypeSource containing classes to map

AutoPersistenceModel Source(ITypeSource source, IAutomappingConfiguration cfg)

Automatically map the classes exposed through the supplied ITypeSource.
Parameters
ITypeSource source

ITypeSource containing classes to map

IAutomappingConfiguration cfg

Automapping configuration

AutoPersistenceModel Source(ITypeSource source, Func<Type, bool> where)

Automatically map the classes exposed through the supplied ITypeSource.
Parameters
ITypeSource source

ITypeSource containing classes to map

Func<Type, bool> where

Criteria for selecting a subset of the types in the assembly for mapping