| EntityPropertyProjector Constructor (IEntityFieldCore, String) | 
  
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntaxpublic EntityPropertyProjector(
	IEntityFieldCore defaultValueProvider,
	string projectedResultName
)
Public Sub New ( 
	defaultValueProvider As IEntityFieldCore,
	projectedResultName As String
)
Parameters
- defaultValueProvider
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
The default value provider object.This object produces the value returned by ProjectEntityProperty if ValueFilter isn't set or resolves to true
            for the entity passed into ProjectEntityProperty. Can't be null - projectedResultName
 - Type: SystemString
Name for the projection result. Projection result consumers can use this name to further handle the projection result.
            Can't be null / empty string 
See Also