Questions tagged [asp.net-web-api]
ASP.NET Web API is a framework for building HTTP services for clients like browsers and mobile devices. It is based on the Microsoft .NET Framework and ideal choice for building RESTful services.
133 questions
0
votes
0
answers
52
views
Seeking Suggestions for Improving My Program.cs File for a .NET Project
I use this code as reference for when I start working on a new project whether that be for personal or for work. It's worked fine so far, but I'm wondering if anyone can read it and provide any ...
4
votes
1
answer
91
views
Abstraction Layers and Best Practices in Authentication with EF Core
Do you recommend adding a layer of abstraction on top of EF Core for example we have an API controller responsible for authentication do I just call EF Core methods directly in the controller or do I ...
2
votes
1
answer
34
views
How to optimize database query within the context of an asp.net core Web API?
I have an ASP.NET CORE web API. I have a method that queries two tables: Delivery and DeliveryAssignment.
They have temporary tables DeliveryAssignmentDetail which contain deliveryId and AssignmentId....
1
vote
1
answer
70
views
Handling HTTP requests in existing Web Api
I am working in a Web Api project that has the following project structure:
Root
Controllers
Orchestrators
Managers
Services
etc
The ...
1
vote
1
answer
328
views
Concurrent Requests Handling in ASP.NET Web API 2
I was having concurrency issues with my ASP.NET Web API 2 project with .NET Framework 4.6.2. (EF 6), although it has been live on production that has been running for more than 1 year, this problem ...
3
votes
0
answers
100
views
Building an API for an e-commerce system to allow third party software to import products
I am working on an e-commerce website called Shopless, which is similar to E-bay/Gumtree. Our website integrates with other DMS systems, in order to allow organisations to import products into our ...
2
votes
2
answers
504
views
Decrypt incoming HTTP request headers
During each HTTP request incoming from my Angular front-end I send encrypted pair of access & refresh token. On the back-end ASP.NET web APIs are used.
The way I decrypt them currently is by ...
1
vote
1
answer
161
views
Azure DevOps Git: Fork into another Repo using Azure DevOps REST API
In my Azure DevOps Project, I have a Git repository that I would like to copy to another Azure DevOps Project.
In other words, I should be able to copy the original repo into other Azure DevOps ...
3
votes
1
answer
294
views
Export and import work items from Azure DevOps
I'm working on an application that exports and imports work items from Azure DevOps. To import work items into Azure DevOps, I have written the following code.
Would you be able to review and make ...
1
vote
1
answer
2k
views
Is it optimal way to filter records from table using Entity Framework?
I have the SQL Products table migrated from MongoDb and I use ASP Core + MediatR. The filtering data comes from frontend ...
3
votes
0
answers
660
views
Async FIFO processing of database writes - naive implementation in .Net 6
One of the companies I was recently interviewing with gave me a following task to implement in a day or two using .Net, just to see where my coding abilities are at:
Implement a Web API that gets ...
2
votes
2
answers
1k
views
ASP.NET Web API for currency
On the basis of the daily exchange rate data of the CB (https://ww.cbr-xml-daily.ru/daily_json.js) it is necessary to create a Web-service using ASP.Net Core, which implements 2 API methods:
...
1
vote
1
answer
2k
views
Having both bearer token and basic authentications
In my asp.net web API, I have a couple of controllers. In one of my controllers, I am using basic authentication and in another one, I am using bearer token authentication. It is working as it is ...
1
vote
1
answer
700
views
ASP.NET Web API 2 reading values from config file or database or elsewhere
In my asp.net web API 2, I am reading values from web.config from the controller into my DTO as a response to the client. It is working as expected, I wonder if there are any improvements to make it ...
0
votes
1
answer
4k
views
Web Api to upload excel file
I work on asp.net core 2.2 web API using C# language
I need to rewrite function below with best syntax and with best practice
web API below get Excel file from upload and return Excel file
it working ...