IDaoFetchExcludedFields Method (IEntity, ITransaction, ExcludeIncludeFieldsList) | 
 
            Loads the data for the excluded fields specified in the list of excluded fields into the entity passed in. 
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.7.0.0 (5.7.0)
Syntaxvoid FetchExcludedFields(
	IEntity entity,
	ITransaction containingTransaction,
	ExcludeIncludeFieldsList excludedIncludedFields
)
Sub FetchExcludedFields ( 
	entity As IEntity,
	containingTransaction As ITransaction,
	excludedIncludedFields As ExcludeIncludeFieldsList
)
Parameters
- entity
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntity
The entity to load the excluded field data into. - containingTransaction
 - Type: SD.LLBLGen.Pro.ORMSupportClassesITransaction
A containing transaction, if caller is added to a transaction, or null if not. - excludedIncludedFields
 - Type: SD.LLBLGen.Pro.ORMSupportClassesExcludeIncludeFieldsList
The excludedIncludedFields object as it is used when fetching the passed in 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. 
RemarksThe field data is set like a normal field value set, so authorization is applied to it.
See Also