Qrtix.RepositoryPattern.EntityFrameworkCore 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Qrtix.RepositoryPattern.EntityFrameworkCore --version 1.2.0
NuGet\Install-Package Qrtix.RepositoryPattern.EntityFrameworkCore -Version 1.2.0
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="Qrtix.RepositoryPattern.EntityFrameworkCore" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Qrtix.RepositoryPattern.EntityFrameworkCore --version 1.2.0
#r "nuget: Qrtix.RepositoryPattern.EntityFrameworkCore, 1.2.0"
#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 Qrtix.RepositoryPattern.EntityFrameworkCore as a Cake Addin
#addin nuget:?package=Qrtix.RepositoryPattern.EntityFrameworkCore&version=1.2.0

// Install Qrtix.RepositoryPattern.EntityFrameworkCore as a Cake Tool
#tool nuget:?package=Qrtix.RepositoryPattern.EntityFrameworkCore&version=1.2.0

Repository Pattern implementation for Entity Framework Core

NuGet Version NuGet Downloads GitHub Repo stars

A library for implementing generic repositories and unit of work with Entity Framework Core. This implementation uses a single instance of the DbContext for all repositories to avoid concurrency issues.

Consult the online documentation for more details.

Table of Contents

Installation

Using the NuGet package manager console within Visual Studio run the following command:

Install-Package Ortix.RepositoryPattern.EntityFrameworkCore

Or using the .NET Core CLI from a terminal window:

dotnet add package Qrtix.RepositoryPattern.EntityFrameworkCore

Creating the DbContext

Create your DbContext inheriting from Microsoft.EntityFrameworkCore.DbContext:

public class MyDbContext : DbContext
{
    public DbSet<Product> Products { get; set; }  

    protected override void OnModelCreating(ModelBuilder modelBuilder)
	{
		modelBuilder.ApplyConfigurationsFromAssembly(Assembly.GetExecutingAssembly());
		base.OnModelCreating(modelBuilder);
	}
}

Configure your DbContext in the Program class:

builder.Services.AddDbContext<DbContext, SuinQShopModuleDbContext>(opt =>
    {
        opt.UseSqlServer(builder.Configuration.GetConnectionString("ConnectionString"));
    });

Injecting the RepositoryPattern's Services

Add the RepositoryPattern services to the Service Collection:

builder.Services.AddRepositoryPattern(options => {
    options.UseEntityFrameworkCore();
});

The default scope for injected services is scoped. If you want to change it, refer to the next example:

builder.Services.AddRepositoryPattern(options => {
    options.UseEntityFrameworCore();
}, ServiceLifeTime.Transient);
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 is compatible.  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 is compatible.  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
3.0.0 94 5/6/2024
2.0.0 85 5/4/2024
1.2.0 82 4/27/2024
1.0.1 85 4/26/2024
1.0.0 79 4/26/2024

Update dependencies