Populates a EntityMappingStore with the entity mapping and property mapping information found on an entity implementation type

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public void AddMappingsForType(
	EntityMappingStore mappingStore,
	Type mappedType
)
Visual Basic
Public Sub AddMappingsForType ( 
	mappingStore As EntityMappingStore,
	mappedType As Type
)
Visual C++
public:
void AddMappingsForType(
	EntityMappingStore^ mappingStore, 
	Type^ mappedType
)
F#
member AddMappingsForType : 
        mappingStore : EntityMappingStore * 
        mappedType : Type -> unit 

Parameters

mappingStore
Type: BrightstarDB.EntityFramework..::..EntityMappingStore
The EntityMappingStore to be updated
mappedType
Type: System..::..Type
The entity implementation type to be processed

See Also