File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/AutoMapper.Extensions.ExpressionMapping/Impl Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,9 +111,9 @@ public TResult Execute<TResult>(Expression expression)
111
111
destResult = ( IQueryable < TDestination > ) GetMapExpressions ( queryExpressions ) . Aggregate ( sourceResult , Select ) ;
112
112
}
113
113
// case #2: query is arbitrary ("manual") projection
114
- // exaple : users.UseAsDataSource().For<UserDto>().Select(user => user.Age).ToList()
114
+ // example : users.UseAsDataSource().For<UserDto>().Select(user => user.Age).ToList()
115
115
// in case an arbitrary select-statement is enumerated, we do not need to map the expression at all
116
- // and cann safely return it
116
+ // and can safely return it
117
117
else if ( IsProjection ( resultType , sourceExpression ) )
118
118
{
119
119
var sourceResult = _dataSource . Provider . CreateQuery ( sourceExpression ) ;
You can’t perform that action at this time.
0 commit comments