Trying to run methods after api starts up
So I’ve written an api on ASP.Net-Core and I want to run some csvReader methods as soon as the server starts. Currently it just starts up and doesn’t run my DataMigrationController.
So I’ve written an api on ASP.Net-Core and I want to run some csvReader methods as soon as the server starts. Currently it just starts up and doesn’t run my DataMigrationController.
I wrote an app in ASP.NET Core MVC with CRUD to deploy to Azure, using code first. I followed this tutorial: https://docs.microsoft.com/en-us/azure/app-service/app-service-web-tutorial-dotnet-sqldatabase
In my database I have phone number as 123-456-7890 and 1234567890, Is there any way to format display in as 123-456-7890 format in my textbox
The application I have developed now needs to connect to another database. My own database is created with migrations, but I also need to create a model that correlates to this other table in another database.
I recently installed .NET 5 Preview 8 and created a new ASP.NET Core MVC project in Visual Studio 2019 16.8 Preview 2.
Student Attendance class
I have created an ASP.NET Core 3.1 application. The application is deployed to a Azure App Service. In the project I make use of logging, but the problem is that I can’t view the logs on Azure via Log Stream.
I have a problem regarding Docker.
Is there an solution to make a Asp.Net core backend “real time”?
What i mean on realtime is, for example an angular framework app conects to the backend, and when someone updates something in the database it notifies the connected frontend about it.
I created a basic .Net Core Mvc application and I want to automatically set ModelState.IsValid for all my action here is the code of Validation Filter