Click or drag to resize
Infosoft Logo

QueryMetadataIncludes Property

Gets or sets the list of include queries to execute. Each include string is a relation path.

Namespace: Infosoft.Common.Contracts.DataContracts.ServiceModel
Assembly: Infosoft.Common.Contracts (in Infosoft.Common.Contracts.dll) Version: 4.00.0.0
Syntax
public List<string> Includes { get; set; }

Property Value

ListString
Remarks
Note that all include strings are valid, but their successfull evaluation is not guaranteed. Not all include paths can be resolve in an orderly fashion, and some include paths might result in very long query times. An include string corresponds roughly to an SQL JOIN and will in most cases be translated as such.
Example
To include all addresses on a Customer, the include string "Addresses" should be specified. To include all households and addresses on a customer, specify the include string "Addresses.Household".
See Also