DotNetCore.EntityFrameworkCore 18.8.0

dotnet add package DotNetCore.EntityFrameworkCore --version 18.8.0
NuGet\Install-Package DotNetCore.EntityFrameworkCore -Version 18.8.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="DotNetCore.EntityFrameworkCore" Version="18.8.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotNetCore.EntityFrameworkCore --version 18.8.0
#r "nuget: DotNetCore.EntityFrameworkCore, 18.8.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 DotNetCore.EntityFrameworkCore as a Cake Addin
#addin nuget:?package=DotNetCore.EntityFrameworkCore&version=18.8.0

// Install DotNetCore.EntityFrameworkCore as a Cake Tool
#tool nuget:?package=DotNetCore.EntityFrameworkCore&version=18.8.0

DotNetCore.EntityFrameworkCore

Extensions

public static class Extensions
{
    public static void AddContext<T>(this IServiceCollection services, Action<DbContextOptionsBuilder> options) where T : DbContext { }

    public static void AddContextMemory<T>(this IServiceCollection services) where T : DbContext { }

    public static DbSet<T> CommandSet<T>(this DbContext context) where T : class { }

    public static DbContext DetectChangesLazyLoading(this DbContext context, bool enabled) { }

    public static IQueryable<T> QuerySet<T>(this DbContext context) where T : class { }
}

EFCommandRepository

public class EFCommandRepository<T> : ICommandRepository<T> where T : class
{
    public EFCommandRepository(DbContext context) { }

    public void Add(T item) { }

    public Task AddAsync(T item) { }

    public void AddRange(IEnumerable<T> items) { }

    public Task AddRangeAsync(IEnumerable<T> items) { }

    public void Delete(object key) { }

    public void Delete(Expression<Func<T, bool>> where) { }

    public Task DeleteAsync(object key) { }

    public Task DeleteAsync(Expression<Func<T, bool>> where) { }

    public void Update(T item) { }

    public Task UpdateAsync(T item) { }

    public void UpdatePartial(object item) { }

    public Task UpdatePartialAsync(object item) { }

    public void UpdateRange(IEnumerable<T> items) { }

    public Task UpdateRangeAsync(IEnumerable<T> items) { }
}

EFQueryRepository

public class EFQueryRepository<T> : IQueryRepository<T> where T : class
{
    public EFQueryRepository(DbContext context) { }

    public IQueryable<T> Queryable { get; };

    public bool Any() { }

    public bool Any(Expression<Func<T, bool>> where) { }

    public Task<bool> AnyAsync() { }

    public Task<bool> AnyAsync(Expression<Func<T, bool>> where) { }

    public long Count() { }

    public long Count(Expression<Func<T, bool>> where) { }

    public Task<long> CountAsync() { }

    public Task<long> CountAsync(Expression<Func<T, bool>> where) { }

    public T Get(object key) { }

    public Task<T> GetAsync(object key) { }

    public IEnumerable<T> List() { }

    public async Task<IEnumerable<T>> ListAsync() { }
}

EFRepository

public class EFRepository<T> : Repository<T> where T : class
{
    public EFRepository(DbContext context) : base(new EFCommandRepository<T>(context), new EFQueryRepository<T>(context)) { }
}

IUnitOfWork

public interface IUnitOfWork
{
    Task<int> SaveChangesAsync();
}

UnitOfWork

public sealed class UnitOfWork<TDbContext> : IUnitOfWork where TDbContext : DbContext
{
    public UnitOfWork(TDbContext context) { }

    public Task<int> SaveChangesAsync() { }
}
Product Compatible and additional computed target framework versions.
.NET 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 (1)

Showing the top 1 popular GitHub repositories that depend on DotNetCore.EntityFrameworkCore:

Repository Stars
rafaelfgx/Architecture
.NET 8, Angular 17, Clean Architecture, Clean Code, SOLID Principles, KISS Principle, DRY Principle, Fail Fast Principle, Common Closure Principle, Common Reuse Principle, Acyclic Dependencies Principle, Mediator Pattern, Result Pattern, Folder-by-Feature Structure, Separation of Concerns.
Version Downloads Last updated
18.8.0 274 3/30/2024