IEntityFetchExcludedFields Method |
Loads the data for the excluded fields specified in the list of excluded fields into this entity.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax void FetchExcludedFields(
ExcludeIncludeFieldsList excludedIncludedFields
)
Sub FetchExcludedFields (
excludedIncludedFields As ExcludeIncludeFieldsList
)
Parameters
- excludedIncludedFields
- Type: SD.LLBLGen.Pro.ORMSupportClassesExcludeIncludeFieldsList
The excludedIncludedFields object as it is used when fetching the entity. If you used
the excludedIncludedFields object to fetch only the fields in that list (i.e. excludedIncludedFields.ExcludeContainedFields==false), the routine
will fetch all other fields in the resultset for the entities in the collection excluding the fields in excludedIncludedFields.
Remarks The field data is set like a normal field value set, so authorization is applied to it.
See Also