Best of .NETApril 2023

  1. 1
    Article
    Avatar of dnetcurryDotNetCurry·3y

    React.js Application Structure - Best Practices

    A well-structured application helps you maintain the codebase, onboard new developers, and easily scale the project. In this article, we will discuss various approaches to structuring your React.js application. There are several ways to organize the files and components in a React application. These approaches can be categorized into three main types.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    C# (C Sharp) CRUD Rest API using .NET 7, ASP.NET, Entity Framework, Postgres, Docker, and Docker Compose

    Learn how to create a CRUD Rest API using C# (C Sharp), .NET 7, ASP.NET, Entity Framework, Postgres, Docker, and Docker Compose.

  3. 3
    Article
    Avatar of dotnet.NET Blog·3y

    ASP.NET Core Route Tooling Enhancements in .NET 8

    ASP.NET Core Route Tooling Enhancements in.NET 8 is built on routing. Minimal APIs, Web APIs, Razor Pages, and Blazor all use routes to customize how HTTP requests map to your code. New analyzers and fixers include: Route syntax analyzer as you write and compile your app.

  4. 4
    Article
    Avatar of communityCommunity Picks·3y

    C# (C Sharp) CRUD Rest API using .NET 7, ASP.NET, Entity Framework, Postgres, Docker and Docker Compose

    Learn how to create a CRUD Rest API in C# using .NET 7, ASP.NET, Entity Framework, Postgres, Docker, and Docker Compose.

  5. 5
    Article
    Avatar of codimisCodimis·3y

    Code First or Database First ?

    Code First and Database First are two approaches to setting up an Entity Framework data model. Code First involves defining the model using C# or VB.NET classes and using Entity Framework's migration features to update the database schema. Database First involves creating a database first and then generating the entity classes with Entity Framework.

  6. 6
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Build Minimal APIs in .NET 7

    The freeCodeCamp.org YouTube channel will teach you the power of Minimal APIs in.NET 7 and build well-constructed endpoints with C#,.NET 7, and Swagger. Learn about the changes you'll need to make to your Program.cs file to accommodate Minimal API endpoints.