Gets a value indicating whether null propagation is required in expression trees.
Namespace: HotDocs.Sdk.DataServicesAssembly: HotDocs.Sdk.DataServices (in HotDocs.Sdk.DataServices.dll) Version: 1.0.0.0 (1.0.0.0)
public bool IsNullPropagationRequired { get; }
public bool IsNullPropagationRequired { get; }
Property Value
Type:
BooleanImplements
IDataServiceQueryProvider IsNullPropagationRequiredIf this is set to true than the generated expression trees will contain conditionals to check for nulls when trying to access properties on objects.
If this is set to false, no such checks will be present in the tree and the data service assumes that the query provider can handle
accesses to properties on instances which are null (what happens in that case is up to the provider, but it is assumed that value of such property is also null).