Class DapperExtensionsConfiguration
Inheritance
System.Object
DapperExtensionsConfiguration
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: DapperExtensions.StrongName.dll
Syntax
public class DapperExtensionsConfiguration : IDapperExtensionsConfiguration
Constructors
|
Improve this Doc
View Source
DapperExtensionsConfiguration()
Declaration
public DapperExtensionsConfiguration()
|
Improve this Doc
View Source
DapperExtensionsConfiguration(Type, IList<Assembly>, ISqlDialect)
Declaration
public DapperExtensionsConfiguration(Type defaultMapper, IList<Assembly> mappingAssemblies, ISqlDialect sqlDialect)
Parameters
Type |
Name |
Description |
System.Type |
defaultMapper |
|
System.Collections.Generic.IList<System.Reflection.Assembly> |
mappingAssemblies |
|
ISqlDialect |
sqlDialect |
|
Properties
|
Improve this Doc
View Source
DefaultMapper
Declaration
public Type DefaultMapper { get; }
Property Value
Type |
Description |
System.Type |
|
|
Improve this Doc
View Source
Dialect
Declaration
public ISqlDialect Dialect { get; }
Property Value
|
Improve this Doc
View Source
MappingAssemblies
Declaration
public IList<Assembly> MappingAssemblies { get; }
Property Value
Type |
Description |
System.Collections.Generic.IList<System.Reflection.Assembly> |
|
Methods
|
Improve this Doc
View Source
ClearCache()
Declaration
|
Improve this Doc
View Source
GetMap(Type)
Declaration
public IClassMapper GetMap(Type entityType)
Parameters
Type |
Name |
Description |
System.Type |
entityType |
|
Returns
|
Improve this Doc
View Source
GetMap<T>()
Declaration
public IClassMapper GetMap<T>()
where T : class
Returns
Type Parameters
|
Improve this Doc
View Source
GetMapType(Type)
Declaration
protected virtual Type GetMapType(Type entityType)
Parameters
Type |
Name |
Description |
System.Type |
entityType |
|
Returns
Type |
Description |
System.Type |
|
|
Improve this Doc
View Source
GetNextGuid()
Declaration
public Guid GetNextGuid()
Returns
Type |
Description |
System.Guid |
|
Implements