| ProjectGetAllMappableTargetFields Method (GroupableModelElementMapping, IProjectElementMapTargetElement, Boolean) | 
 
            Gets all mappable target fields. Normally this is the set of fields in the target specified, however if the mapped element in mapping is an
            entity in a hierarchy of TargetPerEntityHierarchy, fields which are already mapped in supertypes or subtypes are filtered out.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntaxpublic IEnumerable<IProjectElementFieldMapTargetElement> GetAllMappableTargetFields(
	GroupableModelElementMapping mapping,
	IProjectElementMapTargetElement target,
	bool filterOutFieldsInMapping
)
Public Function GetAllMappableTargetFields ( 
	mapping As GroupableModelElementMapping,
	target As IProjectElementMapTargetElement,
	filterOutFieldsInMapping As Boolean
) As IEnumerable(Of IProjectElementFieldMapTargetElement)
Parameters
- mapping
 - Type: SD.LLBLGen.Pro.ApplicationCore.MappingGroupableModelElementMapping
The mapping. - target
 - Type: SD.LLBLGen.Pro.DBDriverCoreIProjectElementMapTargetElement
The target. This target is explicitly specified, as it's the new target to set in mapping which is an action which could
            take place in the future - filterOutFieldsInMapping
 - Type: SystemBoolean
if set to true it will also filter out the fields in the mapping 
Return Value
Type: 
IEnumerableIProjectElementFieldMapTargetElement
            list of fields from target which are mappable in mapping
            
See Also