Click or drag to resize

DynamicQueryEngineBaseCheckSelectListAndPersistenceInfoForSelect Method

Checks the specified select list and fieldspersistenceinfo and throws exceptions when an inconsistency is detected.

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
protected static void CheckSelectListAndPersistenceInfoForSelect(
	IEntityFieldCore[] selectList,
	IFieldPersistenceInfo[] fieldsPersistenceInfo
)

Parameters

selectList
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
The select list to check
fieldsPersistenceInfo
Type: SD.LLBLGen.Pro.ORMSupportClassesIFieldPersistenceInfo
the fields persistence info to check
Exceptions
ExceptionCondition
ArgumentNullExceptionif the select list is null or the fieldspersistenceinfo is null
ArgumentExceptionif the select list has a length of 0 or the fieldspersistenceinfo has a length of 0
ORMQueryConstructionExceptionif the length of the select list differs from the fieldpersistenceinfo length. They should match
See Also