Click or drag to resize
LinqUtilsObtainObjectValuesFromListOfObjects Method
Obtains the object values for all fields in the list of fields specified from list of objects passed in.

Namespace:  SD.LLBLGen.Pro.LinqSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static Object[][] ObtainObjectValuesFromListOfObjects(
	IList listOfObjects,
	List<IEntityFieldCore> listOfFields
)

Parameters

listOfObjects
Type: System.CollectionsIList
The list of objects.
listOfFields
Type: System.Collections.GenericListIEntityFieldCore
The list of fields.

Return Value

Type: Object
Per field in ListOfFields a row is specified in the array returned which contains per slot the value of the property corresponding with that field in the object at that index in the list of objects
See Also