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.6.0.0 (5.6.19.0117)
Syntax public static Object[][] ObtainObjectValuesFromListOfObjects(
IList listOfObjects,
List<IEntityFieldCore> listOfFields
)
Public Shared Function ObtainObjectValuesFromListOfObjects (
listOfObjects As IList,
listOfFields As List(Of IEntityFieldCore)
) As Object()()
Parameters
- listOfObjects
- Type: System.CollectionsIList
The list of objects. - listOfFields
- Type: System.Collections.GenericListIEntityFieldCore
The list of fields.
Return Value
Type:
ObjectPer 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