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.6.0.0 (5.6.19.0117)
Syntax public IEntityFieldCore[] FieldsForQueryAsArray { get; }
Public ReadOnly Property FieldsForQueryAsArray As IEntityFieldCore()
Get
Property Value
Type:
IEntityFieldCoreRemarks 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