Query for retrieving associations with changed/mismatching keys.

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

Syntax

C#
public IQueryable<ModelAssociationSet> GetChangedAssociations(
	IEnumerable<string> exceptEntitySets,
	IEnumerable<string> exceptAssociations
)
Visual Basic
Public Function GetChangedAssociations ( _
	exceptEntitySets As IEnumerable(Of String), _
	exceptAssociations As IEnumerable(Of String) _
) As IQueryable(Of ModelAssociationSet)
Visual C++
public:
IQueryable<ModelAssociationSet^>^ GetChangedAssociations(
	IEnumerable<String^>^ exceptEntitySets, 
	IEnumerable<String^>^ exceptAssociations
)

Parameters

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

Return Value

A query (IQueryable) of ModelAssociationSet objects.

See Also