ASP.Net Core 3.1 – Post parameter is always NULL in Web API
I am trying to create a basic API service in ASP.Net Core 3.1.
I am trying to create a basic API service in ASP.Net Core 3.1.
I’m writing a server application that handles Apple ID authorization from the iOS device.
The server is written in C# .net ASP.NET framework.
Hi I’m trying to build my first API wit ASP.net Core and have been following this tutorial: https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-3.1&tabs=visual-studio
I use a model class to create an object. My code works well but it has code repeat. imagine this code below: ModelA objectA = new ModelA { x = A-B <= 0 ? 0 : A – B, y = C – D > 0 ? C-D : int.MinValue }; This code below creates … Read more
NET MVC web application with connection to database (Postgresql) and I have to deploy it to Heroku. Do I have to migrate this project to ASP.NET Core somehow or it is possible to deploy as it is?
I am trying to call webservice through httpwebrequest. Successfully added XML document and headers but still getting error Internal Server Error 500 . Same xml doc copied from debugging mode is working fine on postman. My code is
I am developing a database using a code-first approach with entity framework.
How can I log all handled exceptions?
I need to turn an automatic CSV file into multiple database columns using Entity Framework. It is set up so that each model has children. So that Animal contains a list of Types which contain a list of Classification. In this way Classification is a grandchild of Animal