Ejemplo n.º 1
0
 private Mapper(MapperContext context)
 {
     Context        = context;
     Context.Mapper = this;
 }
 public static Expression GetValueConversion(this MapperContext context, Expression value, Type targetType)
 => context.ValueConverters.GetConversion(value, targetType);
Ejemplo n.º 3
0
 public MappingExecutor(TSource source, MapperContext mapperContext)
 {
     _source       = source;
     MapperContext = mapperContext;
 }
 public static Member GetIdentifierOrNull(this MapperContext context, Type type)
 => context.Naming.GetIdentifierOrNull(type);
Ejemplo n.º 5
0
 public ProjectionExecutor(MapperContext mapperContext, IQueryable <TSourceElement> sourceQueryable)
 {
     _mapperContext   = mapperContext;
     _sourceQueryable = sourceQueryable;
 }
Ejemplo n.º 6
0
 public MappingExecutor(MappingRuleSet ruleSet, MapperContext mapperContext)
 {
     RuleSet       = ruleSet;
     MapperContext = mapperContext;
 }
Ejemplo n.º 7
0
 private Mapper(MapperContext mapperContext)
 {
     _mapperContext = mapperContext;
 }
Ejemplo n.º 8
0
 public MappingExecutor(TSource source, MapperContext mapperContext)
 {
     _source       = source;
     MapperContext = mapperContext.ThrowIfDisposed();
 }