asp.net.core.helper.core 1.2.2

dotnet add package asp.net.core.helper.core --version 1.2.2
NuGet\Install-Package asp.net.core.helper.core -Version 1.2.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="asp.net.core.helper.core" Version="1.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add asp.net.core.helper.core --version 1.2.2
#r "nuget: asp.net.core.helper.core, 1.2.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install asp.net.core.helper.core as a Cake Addin
#addin nuget:?package=asp.net.core.helper.core&version=1.2.2

// Install asp.net.core.helper.core as a Cake Tool
#tool nuget:?package=asp.net.core.helper.core&version=1.2.2

asp.net.core.helper

asp.net.core.helper is a library to greatly reduce asp.net boilerplate code and lets you focus on your domain specific stuff.

Nuget alternate text is missing from this package README image

Setup

Use Nuget Package Manager to install the package into your project:

Install-Package asp.net.core.helper.core

Usage

Startup.cs: As Last steps before you Map your endpoints, use MigrateDatabase and/or SeedDatabase to get the Package working.

public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
    ...
    app.UseRouting();

    app.MigrateDatabase<SampleContext>();
    app.SeedDatabase<SampleContext>(typeof(Startup));

    app.UseEndpoints(endpoints =>
    {
        endpoints.MapControllers();
    });
}

MigrateDatabase

Use this Extension to apply your EF Core Migrations properly

SeedDatabase

Supported database adapters: (Tested)

  • Pomelo.EntityFrameworkCore.MySql (5.0.3) for MariaDb 10..6.4

Example Seed see UserSeed.cs

  • L7: Inherit from BaseSeed with your Context as generic argument
  • L10: Constructor to pass the Injected Context to the BaseClass
  • L16: The unique Key of this seed
  • L18: The Order in wich the seeds should be executed
  • L20-36: This seed adds a default admin user to the Users Table

ToDo:

  • NuGet
  • CI / CD
  • Document sources and sample
  • Microsoft SQL Server IQueryProvider

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.2 390 11/13/2022
1.2.1 426 10/5/2022
1.2.0 422 10/5/2022
1.1.0 405 6/7/2022
1.0.7 437 4/19/2022
1.0.6 270 1/5/2022
1.0.5 260 1/4/2022
1.0.4 251 1/4/2022
1.0.3 276 1/4/2022
1.0.2 289 1/4/2022
1.0.1 259 1/3/2022
1.0.0 282 12/5/2021