private static bool ShouldCheckMap(TypeMap typeMap)
 {
     return((typeMap.CustomMapper == null && typeMap.CustomProjection == null &&
             typeMap.DestinationTypeOverride == null) && !FeatureDetector.IsIDataRecordType(typeMap.SourceType));
 }
 private static bool ShouldCheckMap(TypeMap typeMap)
 {
     return(typeMap.CustomMapper == null && !FeatureDetector.IsIDataRecordType(typeMap.SourceType));
 }
Exemple #3
0
 public bool ShouldCheckForValid()
 {
     return((CustomMapper == null && CustomProjection == null &&
             DestinationTypeOverride == null) && !FeatureDetector.IsIDataRecordType(SourceType));
 }