18
Z tym poleceniem jest już otwarty czytnik danych, który należy najpierw zamknąć
Mam to zapytanie i pojawia się błąd w tej funkcji: var accounts = from account in context.Accounts from guranteer in account.Gurantors select new AccountsReport { CreditRegistryId = account.CreditRegistryId, AccountNumber = account.AccountNo, DateOpened = account.DateOpened, }; return accounts.AsEnumerable() .Select((account, index) => new AccountsReport() { RecordNumber = FormattedRowNumber(account, index + 1), CreditRegistryId …