skip to Main Content

EF cannot translate query – Asp.net

I have query for getting data await _dbContext.VwJobSupplierWithScores .Where(x => x.JobId == jobId && x.SupplierKey == supplierKey) .OrderBy(x => x.SpendCurrencyJob) .Select((x, i) => new {item = x, index = i}) .FirstOrDefaultAsync())!, But for some reasons EF cannot translate it and…

VIEW QUESTION

Use static class in ASP.NET Web API

I am posting this question using an automatic translation. Please forgive any grammatical errors. I have built an application using the .NET framework and the ASP.net Web API. I have split the virtual path for each customer region within a…

VIEW QUESTION

Stuck in asp.net core tutorial. Trying to use package manager console to add EF Core SQL Server provider does not work

I am following this beginners tutorial on Microsoft's site. At this step... In the PMC, run the following command: Install-Package Microsoft.EntityFrameworkCore.SqlServer When I enter that command I get these messages and errors.. PM> Install-Package Microsoft.EntityFrameworkCore.SqlServer Restoring packages for C:projectsLazerbaseASPNETLazerbaseASPNETLazerbaseASPNET.csproj... GET…

VIEW QUESTION
Back To Top
Search