DotNetCore.EntityFrameworkCore
19.16.0
dotnet add package DotNetCore.EntityFrameworkCore --version 19.16.0
NuGet\Install-Package DotNetCore.EntityFrameworkCore -Version 19.16.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="19.16.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetCore.EntityFrameworkCore" Version="19.16.0" />
<PackageReference Include="DotNetCore.EntityFrameworkCore" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DotNetCore.EntityFrameworkCore --version 19.16.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DotNetCore.EntityFrameworkCore, 19.16.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.
#addin nuget:?package=DotNetCore.EntityFrameworkCore&version=19.16.0
#tool nuget:?package=DotNetCore.EntityFrameworkCore&version=19.16.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- DotNetCore.Repositories (>= 19.16.0)
- Microsoft.EntityFrameworkCore.InMemory (>= 9.0.5)
- Microsoft.EntityFrameworkCore.Relational (>= 9.0.5)
- Microsoft.Extensions.Caching.Memory (>= 9.0.5)
- Microsoft.Extensions.DependencyInjection (>= 9.0.5)
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, Angular, 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 |
---|---|---|
19.16.0 | 107 | 6/5/2025 |