Getting Started with ASP.NET Core Web App (MVC) Using .NET 6
Post Views: 1,618 In this article, we will learn what is MVC and how to create your first ASP.NET MVC project in .NET 6 using visual studio. This article is…
Speaker: Embracing Digital Transformation for SMB
Post Views: 47 Like other economic players, the novel pandemic severely hit small-medium businesses, the more significant source of growth and employment in the country by disrupting national and international…
Speaker of the Month – December 2021
Post Views: 121 Thank you C# Corner and Team for awarding “Speaker of the Month – December 2021“. C# Corner is one of the best platforms for developers and data scientists…
Adding Git Ignore File and Folder Using Git Desktop
Post Views: 3,388 Introduction There are many code management and version control tools are available out there. Among all the Git is a famous and mostly used version control tool…
Types of Blockchain
Post Views: 736 There are different types of blockchain that have their own purpose and use cases. Understanding the different blockchain types provides you insights into which one best fits…
Resolving warning: Non-nullable Property Must Contain a Non-null Value in .NET 6
Prior to .NET 6, null-state analysis and variable annotations are disabled for existing project, however, it is enabled for all .NET 6 projects by default. Because of which, all the…
How to Post Data in ASP.NET Using Ajax Without JSON Form Serializer
Post Views: 720 Introduction This article demonstrates how to send form data from the asp.net web application using the Ajax post method without the form serialization. In the previous part…
How to Resolve Issue of Test Project not Running the Unit Tests After Upgrade to .NET 6
Post Views: 2,431 Introduction I was upgrading the .NET Core 3.1 project to .NET 6 and faced issues running test cases in my test projects. I had several projects and…
Error Restoring the NuGet After Upgrading Solution to .NET 6
Post Views: 2,158 I was upgrading the solution from .Net core 3.1 to .NET 6.0 and got the below error while building the project. This blog describes how I resolved…
Non-nullable property must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
Post Views: 2,071 Recently, I was getting this warning for most of the properties which are not specified as nullable. I was not happy this warning, though I was able…