LinkEntity Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
LinkEntity() |
Initializes a new instance of the LinkEntity class. |
LinkEntity(String, String, String, String, JoinOperator) |
Initializes a new instance of the LinkEntity class setting the LinkToEntityName, LinkFromAttributeName, LinkToAttributeName, and JoinOperator properties. |
LinkEntity()
Initializes a new instance of the LinkEntity class.
public:
LinkEntity();
public LinkEntity ();
Public Sub New ()
Applies to
LinkEntity(String, String, String, String, JoinOperator)
Initializes a new instance of the LinkEntity class setting the LinkToEntityName, LinkFromAttributeName, LinkToAttributeName, and JoinOperator properties.
public:
LinkEntity(System::String ^ linkFromEntityName, System::String ^ linkToEntityName, System::String ^ linkFromAttributeName, System::String ^ linkToAttributeName, Microsoft::Xrm::Sdk::Query::JoinOperator joinOperator);
public LinkEntity (string linkFromEntityName, string linkToEntityName, string linkFromAttributeName, string linkToAttributeName, Microsoft.Xrm.Sdk.Query.JoinOperator joinOperator);
new Microsoft.Xrm.Sdk.Query.LinkEntity : string * string * string * string * Microsoft.Xrm.Sdk.Query.JoinOperator -> Microsoft.Xrm.Sdk.Query.LinkEntity
Public Sub New (linkFromEntityName As String, linkToEntityName As String, linkFromAttributeName As String, linkToAttributeName As String, joinOperator As JoinOperator)
Parameters
- linkFromEntityName
- String
The logical name of the table to link from.
- linkToEntityName
- String
The logical name of the table to link to.
- linkFromAttributeName
- String
The name of the column to link from.
- linkToAttributeName
- String
The name of the column to link to.
- joinOperator
- JoinOperator
The join operator.