сказали що писати самому неефктивні запити непотрібно в EF
запит складається з того, що я витягую користувачів і по ним витягую їх баланси, транзакції та інше, ось приклад запиту:
var result = await (from t in _applicationDbContext.Transactions
join userParticipant in _applicationDbContext.TransactionParticipants
on t.Id equals userParticipant.TransactionId
join anotherUserParticipant in _applicationDbContext.TransactionParticipants
on userParticipant.TransactionId equals anotherUserParticipant.TransactionId
join transactionStatus in _applicationDbContext.TransactionStatuses
on t.Id equals transactionStatus.TransactionId
join transactionAdditionalInformation in _applicationDbContext.TransactionAdditionalInformations
on t.Id equals transactionAdditionalInformation.TransactionId
where
userParticipant.Status
&& anotherUserParticipant.Status
&& transactionStatus.Status
&& transactionAdditionalInformation.Status
&& userParticipant.UserBalanceId != anotherUserParticipant.UserBalanceId
&& userParticipant.ParticipantType == Shared.Constants.Participants.ParticipantType.Sender
&& anotherUserParticipant.ParticipantType == Shared.Constants.Participants.ParticipantType.Recipient
select new TransactionFullInformationDTO
{
Hash = t.Hash,
Type = userParticipant.ParticipantType == Shared.Constants.Participants.ParticipantType.Sender
? TransactionType.Credit
: TransactionType.Payment,
CurrencyId = t.CurrencyId,
Sum = t.Sum,
CashbackSum = t.CashbackSum,
Date = t.Date,
RecipientBalanceId = userParticipant.ParticipantType == Shared.Constants.Participants.ParticipantType.Sender
? userParticipant.UserBalanceId
: anotherUserParticipant.UserBalanceId,
SenderBalanceId = userParticipant.ParticipantType == Shared.Constants.Participants.ParticipantType.Recipient
? userParticipant.UserBalanceId
: anotherUserParticipant.UserBalanceId,
TransactionStatusType = transactionStatus.TransactionStatusType,
Icon = transactionAdditionalInformation.Icon,
Description = transactionAdditionalInformation.Description
}).ToListAsync();
return result;
я просто не розумію як тоді в EF робити запити які працюють з багатьма таблицями, тому що на звичайному sql це легко
А можеш, цей же код скріном кинути?) Бо це просто пісець
Обсуждают сегодня