Enterprise Library Data Access Application Block
7.0-rc1
The Data Access Application Block abstracts the actual database you are using, and exposes a collection of methods that make it easy to access that database and to perform common tasks.
|
This type supports the Enterprise Library infrastructure and is not intended to be used directly from your code. More...
Public Member Functions | |
IEnumerable< PropertyMapping > | GetPropertyMappings () |
Returns the list of PropertyMappings that have been accumulated by the context. More... | |
IMapBuilderContext< TResult > | MapByName (PropertyInfo property) |
Adds a property mapping to the context for property that specifies this property will be mapped to a column with a matching name. More... | |
IMapBuilderContext< TResult > | MapByName< TMember > (Expression< Func< TResult, TMember >> propertySelector) |
Adds a property mapping to the context for propertySelector that specifies this property will be mapped to a column with a matching name. More... | |
IMapBuilderContext< TResult > | DoNotMap (PropertyInfo property) |
Adds a property mapping to the context for property that specifies this property will be ignored while mapping. More... | |
IMapBuilderContext< TResult > | DoNotMap< TMember > (Expression< Func< TResult, TMember >> propertySelector) |
Adds a property mapping to the context for propertySelector that specifies this property will be ignored while mapping. More... | |
IMapBuilderContextMap< TResult, TMember > | Map< TMember > (Expression< Func< TResult, TMember >> propertySelector) |
Adds a property mapping to the context for propertySelector . More... | |
IMapBuilderContextMap< TResult, object > | Map (PropertyInfo property) |
Adds a property mapping to the context for property . More... | |
IRowMapper< TResult > | Build () |
Builds the IRowMapper<TResult> that can be used to map data structures to clr types. More... | |
This type supports the Enterprise Library infrastructure and is not intended to be used directly from your code.
|
inherited |
Builds the IRowMapper<TResult> that can be used to map data structures to clr types.
|
inherited |
Adds a property mapping to the context for property that specifies this property will be ignored while mapping.
property | The property of TResult that should be mapped. |
|
inherited |
Adds a property mapping to the context for propertySelector that specifies this property will be ignored while mapping.
propertySelector | A lambda function that returns the property that should be mapped. |
IEnumerable<PropertyMapping> Microsoft.Practices.EnterpriseLibrary.Data.IMapBuilderContextTest< TResult >.GetPropertyMappings | ( | ) |
Returns the list of PropertyMappings that have been accumulated by the context.
|
inherited |
Adds a property mapping to the context for property .
property | The property of TResult that should be mapped. |
|
inherited |
Adds a property mapping to the context for propertySelector .
propertySelector | A lambda function that returns the property that should be mapped. |
|
inherited |
Adds a property mapping to the context for property that specifies this property will be mapped to a column with a matching name.
property | The property of TResult that should be mapped. |
|
inherited |
Adds a property mapping to the context for propertySelector that specifies this property will be mapped to a column with a matching name.
propertySelector | A lambda function that returns the property that should be mapped. |