Adds a store entityset to the model, based on an existing conceptual model entity set and entity type.

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

Syntax

C#
public StoreEntitySet AddEntitySet(
	ModelEntitySet modelEntitySet,
	ModelEntityType modelEntityType,
	string schemaName,
	string tableName
)
Visual Basic
Public Function AddEntitySet ( _
	modelEntitySet As ModelEntitySet, _
	modelEntityType As ModelEntityType, _
	schemaName As String, _
	tableName As String _
) As StoreEntitySet
Visual C++
public:
StoreEntitySet^ AddEntitySet(
	ModelEntitySet^ modelEntitySet, 
	ModelEntityType^ modelEntityType, 
	String^ schemaName, 
	String^ tableName
)

Parameters

modelEntitySet
Type: HuagatiEDMXTools..::..ModelEntitySet
Conceptual model entity set
modelEntityType
Type: HuagatiEDMXTools..::..ModelEntityType
Conceptual model entity type
schemaName
Type: System..::..String
Database schemaname for the new entity set.
tableName
Type: System..::..String
Tablename for the new entityset.

Return Value

A new StoreEntitySet object.

See Also