예제 #1
0
        internal void ApplyTo(IMapperInternal mapper)
        {
            _mapper = mapper;

            UserConfigurations.AppliedConfigurationTypes.Add(GetType());

            Configure();
        }
 internal MapperConfigurationSpecifier(IMapperInternal mapper)
 {
     _mapper = mapper;
 }
 private static IProjectionResultSpecifier <TSourceElement> ProjectUsing <TSourceElement>(
     this IQueryable <TSourceElement> sourceQueryable,
     IMapperInternal mapper)
 {
     return(new ProjectionExecutor <TSourceElement>(mapper.Context, sourceQueryable));
 }