У меня есть выражение linq, которое отлично работает в производственной базе данных, но выдает ошибку на SQLite в памяти db тестового контекста. Полученная ошибка говорит:
The LINQ expression (EntityShaperExpression:
EntityType: Item
ValueBufferExpression:
(ProjectionBindingExpression: Inner)
IsNullable: True ).Price * (Nullable<decimal>)(decimal)(EntityShaperExpression:
EntityType: ISItem
ValueBufferExpression:
(ProjectionBindingExpression: Outer)
IsNullable: False ).Qty' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to either AsEnumerable(), AsAsyncEnumerable(), ToList(), or ToListAsync(). See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.
Выражение linq:
var locationsQuery = context.DbContext.Locations
.Include(x => x.Check)
.Include(x => x.Scan)
.Include(x => x.EScan)
.ThenInclude(es => es!.Items)
.ThenInclude(isi => isi.Item)
.Where(x => x.ProjectId == query.ProjectId)
.Select(x => x);
Тогда у меня есть проекция:
LocationId = entity.Id,
LHA = entity.LHA,
Zone = entity.Zone,
Area = entity.Area,
LocationState = $"DB.{nameof(LocationState)}.{entity.State.ToString()}",
CheckUserId = entity.Check != null ? entity.Check.ScanUserId : (int?)null,
ScanUserId = entity.Scan != null ? entity.Scan.ScanUserId : (int?)null,
CheckUserName = entity.Check != null ? entity.Check.ScanUser.Name : null,
ScanUserName = entity.Scan != null ? entity.Scan.ScanUser.Name : null,
SumPrice = entity.EffectiveScan != null // This cannot be evaluated
? entity.EScan.Items
.Where(x => x.Item != null)
.Sum(x => x.Item!.Price * (decimal)x.Qty)
: null,
SumQty = entity.EScan != null
? entity.EScan.Items
.Sum(x => x.Qty)
: (double?)null
Если я удалю вычисление SumPrice, то оно работает как положено (как на производственной системе). Что я могу сделать, чтобы этот запрос работал одинаково на SqlServer и SQLite In memory db?