示例#1
0
 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));
 }
示例#3
0
 public bool ShouldCheckForValid()
 {
     return((CustomMapper == null && CustomProjection == null &&
             DestinationTypeOverride == null) && !FeatureDetector.IsIDataRecordType(SourceType));
 }