Click or drag to resize

QueryParametersFieldsForQueryAsArray Property

Gets the fields for the query as an array. This is equivalent to calling GetAsEntityFieldCoreArray on FieldsForQuery, however this property will cache the results and will return the same array every time.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax
public IEntityFieldCore[] FieldsForQueryAsArray { get; }

Property Value

Type: IEntityFieldCore
Remarks
It can be this property returns a valid array while FieldsForQuery returns null. This is the case if the CTor accepting an array of fields was used to construct this object. Always use this property to obtain the array for query production.
See Also