Query for retrieving entity subtypes not mapped to the storage layer

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

Syntax

C#
public IQueryable<ModelEntityType> GetUnmappedEntitySubTypes(
	IEnumerable<string> exceptEntitySets,
	IEnumerable<string> exceptEntityTypes
)
Visual Basic
Public Function GetUnmappedEntitySubTypes ( _
	exceptEntitySets As IEnumerable(Of String), _
	exceptEntityTypes As IEnumerable(Of String) _
) As IQueryable(Of ModelEntityType)
Visual C++
public:
IQueryable<ModelEntityType^>^ GetUnmappedEntitySubTypes(
	IEnumerable<String^>^ exceptEntitySets, 
	IEnumerable<String^>^ exceptEntityTypes
)

Parameters

exceptEntitySets
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
Enumeration of names of entity sets to exclude from comparison
exceptEntityTypes
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
Enumeration of names of entity types to exclude from the comparison

Return Value

A query (IQueryable) of ModelEntityType objects with no mapping to the storage layer.

See Also