Adds a mapping between a model entity set and one or more store entitysets.

Namespace: HuagatiEDMXTools
Assembly: HuagatiEDMXTools (in HuagatiEDMXTools.dll) Version: 2.21.4044.31765

Syntax

C#
public EntitySetMapping AddMapping(
	ModelEntitySet modelEntitySet,
	params StoreEntitySet[] storeEntitySets
)
Visual Basic
Public Function AddMapping ( _
	modelEntitySet As ModelEntitySet, _
	ParamArray storeEntitySets As StoreEntitySet() _
) As EntitySetMapping
Visual C++
public:
EntitySetMapping^ AddMapping(
	ModelEntitySet^ modelEntitySet, 
	... array<StoreEntitySet^>^ storeEntitySets
)

Parameters

modelEntitySet
Type: HuagatiEDMXTools..::..ModelEntitySet
Model entityset to add mapping for.
storeEntitySets
Type: array<HuagatiEDMXTools..::..StoreEntitySet>[]()[][]
One or several store entitysets mapped to the model entity set.

Return Value

An EntitySetMapping object.

See Also