Category: .NET Core
-
Add .NET Package to The .csproj Project File
Adding a NuGet package to your .NET project is a great way to get access to functionality that you might not otherwise have.
-
How to Edit ASP.NET Core .csproj File
The .csproj file is one of the most critical files in any ASP.NET project. This file contains all of Visual Studio’s information to build your project.
-
Create a Simple Database App With ASP.NET Core
In this post, we will create an ASP.NET Core application that connects to a database and uses CRUD (create, read, update, delete) to manage database records. CURD Using CRUD (create, read, update, delete) in ASP.NET Core allows us to create applications that connect to a database and manage records. Entity Framework (EF) Core To connect […]
-
Install Entity Framework Core Packages Using PowerShell
This blog post will show you how to install Entity Framework Core packages using PowerShell.
-
How to Use Global Using Statements in C#
In C#, you can use the global using statement to make sure that a particular namespace is always loaded.
-
How to Use Dotnet Watch: Tips and Tricks for Streamlining Development
When you are developing .NET applications, there are times when you need to compile your code on the fly.
-
How to Add Form Validation to an ASP.NET Core MVC App
In this blog post, we are going to show you how to add form validation to an ASP.NET Core MVC app.
-
Changing the Target .NET Core Framework Visual Studio
In this blog post, we’re going to show you how to change the target .NET Core framework in Visual Studio.
-
Create a Simple Form with ASP.NET Core 6 MVC
In this tutorial, we will show you how to create a simple form with ASP.NET Core 6 MVC.
-
Pass Arguments To a C# Application From The Command-Line
Passing arguments to a C# .NET application from the command line can help pass values and variables and process information.