IncludeNavigationProperties
Specifies whether the column listing should include navigation properties.
Data Type
bool
Default Value
false
Remarks
Navigation properties provide a way to navigate an association between two entity types. Every object can have a navigation property for every relationship in which it participates.
Navigation properties enable you to navigate and manage relationships in two ways:
- Two-directional navigation returns either a reference object (if the relationship is either 1 or 0-or-1) or a collection (if the relationship is 1-to-many).
- One-directional navigation enables you to define the navigation property on just one of the types that participates in the relationship, but not both.
When retrieving data, the navigation properties in a cell do not populate with information. Rather, they act to bind the content to an existing resource during inserts or updates. For example:
INSERT INTO accounts (_primarycontactid_value) VALUES ('123456')
To specify multiple values, use a comma-separated list. For instance:
INSERT INTO accounts (lead_customer_accounts) VALUES ('123,456')