YITC.DotNetCore.EntityFrameworkCore
16.26.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package YITC.DotNetCore.EntityFrameworkCore --version 16.26.0
NuGet\Install-Package YITC.DotNetCore.EntityFrameworkCore -Version 16.26.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="YITC.DotNetCore.EntityFrameworkCore" Version="16.26.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add YITC.DotNetCore.EntityFrameworkCore --version 16.26.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: YITC.DotNetCore.EntityFrameworkCore, 16.26.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 YITC.DotNetCore.EntityFrameworkCore as a Cake Addin #addin nuget:?package=YITC.DotNetCore.EntityFrameworkCore&version=16.26.0 // Install YITC.DotNetCore.EntityFrameworkCore as a Cake Tool #tool nuget:?package=YITC.DotNetCore.EntityFrameworkCore&version=16.26.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 | 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 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.
-
net6.0
- Microsoft.EntityFrameworkCore.InMemory (>= 6.0.3)
- Microsoft.EntityFrameworkCore.Relational (>= 6.0.3)
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
- YITC.DotNetCore.Repositories (>= 16.26.0)
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 |
---|---|---|
16.30.0.4 | 544 | 4/15/2022 |
16.26.0.3 | 430 | 3/17/2022 |
16.26.0.2-yitc | 170 | 3/16/2022 |
16.26.0 | 411 | 3/16/2022 |
16.26.0-yitc | 173 | 3/16/2022 |