Share via


EntityRelationshipProperty Constructors

Definition

Overloads

EntityRelationshipProperty(Int32, String, IEntityType)

Initializes a new instance of the EntityRelationshipProperty class.

EntityRelationshipProperty(Int32, String, IEntityType, CollectionFilter[])

Initializes a new instance of the EntityRelationshipProperty class.

EntityRelationshipProperty(Int32, String, IEntityType)

Initializes a new instance of the EntityRelationshipProperty class.

public EntityRelationshipProperty (int index, string propertyName, Microsoft.VisualStudio.ProjectSystem.Query.IEntityType elementType);
new Microsoft.VisualStudio.ProjectSystem.Query.Framework.EntityRelationshipProperty : int * string * Microsoft.VisualStudio.ProjectSystem.Query.IEntityType -> Microsoft.VisualStudio.ProjectSystem.Query.Framework.EntityRelationshipProperty
Public Sub New (index As Integer, propertyName As String, elementType As IEntityType)

Parameters

index
Int32

The index of the property (starts from 0).

propertyName
String

The name of the property.

elementType
IEntityType

The entity type on the other side of the relationship.

Applies to

EntityRelationshipProperty(Int32, String, IEntityType, CollectionFilter[])

Initializes a new instance of the EntityRelationshipProperty class.

public EntityRelationshipProperty (int index, string propertyName, Microsoft.VisualStudio.ProjectSystem.Query.IEntityType elementType, Microsoft.VisualStudio.ProjectSystem.Query.Framework.CollectionFilter[] collectionFilters);
new Microsoft.VisualStudio.ProjectSystem.Query.Framework.EntityRelationshipProperty : int * string * Microsoft.VisualStudio.ProjectSystem.Query.IEntityType * Microsoft.VisualStudio.ProjectSystem.Query.Framework.CollectionFilter[] -> Microsoft.VisualStudio.ProjectSystem.Query.Framework.EntityRelationshipProperty
Public Sub New (index As Integer, propertyName As String, elementType As IEntityType, collectionFilters As CollectionFilter())

Parameters

index
Int32

The index of the property (starts from 0).

propertyName
String

The name of the property.

elementType
IEntityType

The entity type on the other side of the relationship.

collectionFilters
CollectionFilter[]

Collection filter methods.

Applies to