Compare commits
21 Commits
0cf6d2690a
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e0737299cf | ||
|
|
2db99edcda | ||
| 65186b4f47 | |||
| eb3a5b8991 | |||
| 908d85c648 | |||
| d0f055e066 | |||
| 7f9e6155fe | |||
| 1e3cba6fdf | |||
| daa36d767d | |||
| 3021fd36f6 | |||
| 2c704c1231 | |||
| 2bf2bb2276 | |||
|
|
d2302560f1 | ||
|
|
42c0dc7206 | ||
|
|
82686db38b | ||
|
|
ce5c59dfc2 | ||
|
|
5c3db6886a | ||
|
|
144178a504 | ||
| 6717aa37ab | |||
| bf418e986b | |||
| 9f2a13df6f |
@@ -12,9 +12,9 @@
|
|||||||
<PackageIcon>core_icon.png</PackageIcon>
|
<PackageIcon>core_icon.png</PackageIcon>
|
||||||
<RepositoryUrl>http://git.dd:3000/AppStd/WebCoreModules.git</RepositoryUrl>
|
<RepositoryUrl>http://git.dd:3000/AppStd/WebCoreModules.git</RepositoryUrl>
|
||||||
<PackageTags>digital data core application clean architecture abstraction</PackageTags>
|
<PackageTags>digital data core application clean architecture abstraction</PackageTags>
|
||||||
<Version>1.5.0</Version>
|
<Version>1.6.0</Version>
|
||||||
<AssemblyVersion>1.5.0</AssemblyVersion>
|
<AssemblyVersion>1.6.0</AssemblyVersion>
|
||||||
<FileVersion>1.5.0</FileVersion>
|
<FileVersion>1.6.0</FileVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -52,24 +52,28 @@
|
|||||||
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="3.1.32" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
||||||
<PackageReference Include="AutoMapper" Version="13.0.1" />
|
<PackageReference Include="AutoMapper" Version="13.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="7.0.20" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
||||||
<PackageReference Include="AutoMapper" Version="14.0.0" />
|
<PackageReference Include="AutoMapper" Version="14.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="8.0.15" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
|
||||||
<PackageReference Include="AutoMapper" Version="14.0.0" />
|
<PackageReference Include="AutoMapper" Version="14.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.5" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.5" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="9.0.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using System.Linq.Expressions;
|
using System.Linq.Expressions;
|
||||||
|
using Microsoft.EntityFrameworkCore.Query;
|
||||||
#if NETFRAMEWORK
|
#if NETFRAMEWORK
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@@ -8,11 +9,29 @@ using System.Linq;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace DigitalData.Core.Abstraction.Application.Repository
|
namespace DigitalData.Core.Abstraction.Application.Repository
|
||||||
#if NET
|
{
|
||||||
;
|
public interface IRepository
|
||||||
#elif NETFRAMEWORK
|
|
||||||
{
|
{
|
||||||
|
#if NET
|
||||||
|
public
|
||||||
#endif
|
#endif
|
||||||
|
Task<int> ExecuteQueryRawAsync([NotParameterized] string sql, IEnumerable<object> parameters, CancellationToken cancel = default);
|
||||||
|
|
||||||
|
#if NET
|
||||||
|
public
|
||||||
|
#endif
|
||||||
|
Task<int> ExecuteQueryInterpolatedAsync(FormattableString sql, CancellationToken cancel = default);
|
||||||
|
|
||||||
|
#if NET
|
||||||
|
public
|
||||||
|
#endif
|
||||||
|
int ExecuteQueryRaw([NotParameterized] string sql, params object[] parameters);
|
||||||
|
|
||||||
|
#if NET
|
||||||
|
public
|
||||||
|
#endif
|
||||||
|
int ExecuteQueryInterpolated(FormattableString sql);
|
||||||
|
}
|
||||||
|
|
||||||
public interface IRepository<TEntity>
|
public interface IRepository<TEntity>
|
||||||
{
|
{
|
||||||
@@ -44,6 +63,16 @@ namespace DigitalData.Core.Abstraction.Application.Repository
|
|||||||
#endif
|
#endif
|
||||||
IQueryable<TEntity> Query { get; }
|
IQueryable<TEntity> Query { get; }
|
||||||
|
|
||||||
|
#if NET
|
||||||
|
public
|
||||||
|
#endif
|
||||||
|
IQueryable<TEntity> QueryRaw([NotParameterized] string sql, params object[] parameters);
|
||||||
|
|
||||||
|
#if NET
|
||||||
|
public
|
||||||
|
#endif
|
||||||
|
IQueryable<TEntity> QueryInterpolated([NotParameterized] FormattableString sql);
|
||||||
|
|
||||||
#if NET
|
#if NET
|
||||||
public
|
public
|
||||||
#endif
|
#endif
|
||||||
@@ -108,6 +137,4 @@ namespace DigitalData.Core.Abstraction.Application.Repository
|
|||||||
IQueryable<TEntity> ReadOnly();
|
IQueryable<TEntity> ReadOnly();
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
#if NETFRAMEWORK
|
}
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@@ -19,4 +19,13 @@ public class BadRequestException : Exception
|
|||||||
public BadRequestException(string? message) : base(message)
|
public BadRequestException(string? message) : base(message)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="BadRequestException"/> class with a specified error message and inner exception.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="message">The message that describes the error.</param>
|
||||||
|
/// <param name="innerException">The exception that caused the current exception.</param>
|
||||||
|
public BadRequestException(string? message, Exception? innerException) : base(message, innerException)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,9 +17,9 @@
|
|||||||
<RepositoryUrl>http://git.dd:3000/AppStd/WebCoreModules.git</RepositoryUrl>
|
<RepositoryUrl>http://git.dd:3000/AppStd/WebCoreModules.git</RepositoryUrl>
|
||||||
<PackAsTool>False</PackAsTool>
|
<PackAsTool>False</PackAsTool>
|
||||||
<PackageIcon>core_icon.png</PackageIcon>
|
<PackageIcon>core_icon.png</PackageIcon>
|
||||||
<Version>1.1.0</Version>
|
<Version>1.1.1</Version>
|
||||||
<AssemblyVersion>1.1.0</AssemblyVersion>
|
<AssemblyVersion>1.1.1</AssemblyVersion>
|
||||||
<FileVersion>1.1.0</FileVersion>
|
<FileVersion>1.1.1</FileVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
using AutoMapper;
|
using AutoMapper;
|
||||||
using DigitalData.Core.Abstraction.Application.Repository;
|
using DigitalData.Core.Abstraction.Application.Repository;
|
||||||
using DigitalData.Core.Abstractions.Interfaces;
|
|
||||||
using DigitalData.Core.Infrastructure.Factory;
|
using DigitalData.Core.Infrastructure.Factory;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.Linq.Expressions;
|
using System.Linq.Expressions;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.EntityFrameworkCore.Query;
|
||||||
|
|
||||||
#if NETFRAMEWORK
|
#if NETFRAMEWORK
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System;
|
using System;
|
||||||
@@ -15,11 +13,36 @@ using System.Threading.Tasks;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace DigitalData.Core.Infrastructure
|
namespace DigitalData.Core.Infrastructure
|
||||||
#if NET
|
{
|
||||||
;
|
public class DbRepository<TDbContext> : IRepository where TDbContext : DbContext
|
||||||
#elif NETFRAMEWORK
|
|
||||||
{
|
{
|
||||||
#endif
|
protected internal readonly TDbContext Context;
|
||||||
|
|
||||||
|
public DbRepository(TDbContext context)
|
||||||
|
{
|
||||||
|
Context = context;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task<int> ExecuteQueryRawAsync([NotParameterized] string sql, IEnumerable<object> parameters, CancellationToken cancel = default)
|
||||||
|
{
|
||||||
|
return Context.Database.ExecuteSqlRawAsync(sql, parameters, cancel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task<int> ExecuteQueryInterpolatedAsync(FormattableString sql, CancellationToken cancel = default)
|
||||||
|
{
|
||||||
|
return Context.Database.ExecuteSqlInterpolatedAsync(sql, cancel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public int ExecuteQueryRaw([NotParameterized] string sql, params object[] parameters)
|
||||||
|
{
|
||||||
|
return Context.Database.ExecuteSqlRaw(sql, parameters);
|
||||||
|
}
|
||||||
|
|
||||||
|
public int ExecuteQueryInterpolated(FormattableString sql)
|
||||||
|
{
|
||||||
|
return Context.Database.ExecuteSqlInterpolated(sql);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public class DbRepository<TDbContext, TEntity> : IRepository<TEntity> where TDbContext : DbContext where TEntity : class
|
public class DbRepository<TDbContext, TEntity> : IRepository<TEntity> where TDbContext : DbContext where TEntity : class
|
||||||
{
|
{
|
||||||
@@ -77,6 +100,10 @@ namespace DigitalData.Core.Infrastructure
|
|||||||
#region Read
|
#region Read
|
||||||
public virtual IQueryable<TEntity> Query => Entities.AsNoTracking();
|
public virtual IQueryable<TEntity> Query => Entities.AsNoTracking();
|
||||||
|
|
||||||
|
public virtual IQueryable<TEntity> QueryRaw([NotParameterized] string sql, params object[] parameters) => Entities.FromSqlRaw(sql, parameters).AsNoTracking();
|
||||||
|
|
||||||
|
public virtual IQueryable<TEntity> QueryInterpolated([NotParameterized] FormattableString sql) => Entities.FromSqlInterpolated(sql).AsNoTracking();
|
||||||
|
|
||||||
public virtual IQueryable<TEntity> Where(Expression<Func<TEntity, bool>> expression) => Entities.AsNoTracking().Where(expression);
|
public virtual IQueryable<TEntity> Where(Expression<Func<TEntity, bool>> expression) => Entities.AsNoTracking().Where(expression);
|
||||||
|
|
||||||
public virtual IEnumerable<TEntity> GetAll() => Entities.AsNoTracking().ToList();
|
public virtual IEnumerable<TEntity> GetAll() => Entities.AsNoTracking().ToList();
|
||||||
@@ -132,6 +159,4 @@ namespace DigitalData.Core.Infrastructure
|
|||||||
public virtual IQueryable<TEntity> ReadOnly() => Entities.AsNoTracking();
|
public virtual IQueryable<TEntity> ReadOnly() => Entities.AsNoTracking();
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
#if NETFRAMEWORK
|
}
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@@ -11,135 +11,137 @@ using System.Linq;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace DigitalData.Core.Infrastructure
|
namespace DigitalData.Core.Infrastructure
|
||||||
#if NET
|
|
||||||
;
|
|
||||||
#elif NETFRAMEWORK
|
|
||||||
{
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public static class DependencyInjection
|
|
||||||
{
|
{
|
||||||
public static IServiceCollection AddDbRepository(this IServiceCollection services, Action<RepositoryConfiguration> options)
|
public static class DependencyInjection
|
||||||
{
|
{
|
||||||
// register services from configuration
|
public static IServiceCollection AddDbRepository(this IServiceCollection services, Action<RepositoryConfiguration> options)
|
||||||
var cfg = new RepositoryConfiguration();
|
|
||||||
options.Invoke(cfg);
|
|
||||||
cfg.RegisterAllServices(services);
|
|
||||||
|
|
||||||
return services;
|
|
||||||
}
|
|
||||||
|
|
||||||
public class RepositoryConfiguration
|
|
||||||
{
|
|
||||||
// 1. register from assembly
|
|
||||||
private readonly Queue<Action<IServiceCollection>> RegsFromAssembly = new Queue<Action<IServiceCollection>>();
|
|
||||||
|
|
||||||
// 2. register entities (can overwrite)
|
|
||||||
private readonly Queue<Action<IServiceCollection>> RegsEntity = new Queue<Action<IServiceCollection>>();
|
|
||||||
|
|
||||||
// 3. register db set factories (can overwrite)
|
|
||||||
private readonly Queue<Action<IServiceCollection>> RegsDbSetFactory = new Queue<Action<IServiceCollection>>();
|
|
||||||
|
|
||||||
internal void RegisterAllServices(IServiceCollection services)
|
|
||||||
{
|
{
|
||||||
// 1. register from assembly
|
// register services from configuration
|
||||||
RegsFromAssembly.InvokeAll(services);
|
var cfg = new RepositoryConfiguration();
|
||||||
|
options.Invoke(cfg);
|
||||||
|
cfg.RegisterAllServices(services);
|
||||||
|
|
||||||
// 2. register entities (can overwrite)
|
return services;
|
||||||
RegsEntity.InvokeAll(services);
|
|
||||||
|
|
||||||
// 3. register db set factories (can overwrite)
|
|
||||||
RegsDbSetFactory.InvokeAll(services);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
internal RepositoryConfiguration() { }
|
public class RepositoryConfiguration
|
||||||
|
|
||||||
public void RegisterFromAssembly<TDbContext>(Assembly assembly) where TDbContext : DbContext
|
|
||||||
{
|
{
|
||||||
void reg(IServiceCollection services)
|
// 1. register from assembly
|
||||||
|
private readonly Queue<Action<IServiceCollection>> RegsFromAssembly = new Queue<Action<IServiceCollection>>();
|
||||||
|
|
||||||
|
// 2. register entities (can overwrite)
|
||||||
|
private readonly Queue<Action<IServiceCollection>> RegsEntity = new Queue<Action<IServiceCollection>>();
|
||||||
|
|
||||||
|
// 3. register db set factories (can overwrite)
|
||||||
|
private readonly Queue<Action<IServiceCollection>> RegsDbSetFactory = new Queue<Action<IServiceCollection>>();
|
||||||
|
|
||||||
|
// 4. register repository
|
||||||
|
private readonly Queue<Action<IServiceCollection>> RegsRepository = new Queue<Action<IServiceCollection>>();
|
||||||
|
|
||||||
|
internal void RegisterAllServices(IServiceCollection services)
|
||||||
{
|
{
|
||||||
// scan all types in the Assembly
|
// 1. register from assembly
|
||||||
var entityTypes = assembly.GetTypes()
|
RegsFromAssembly.InvokeAll(services);
|
||||||
.Where(t => t.IsClass && !t.IsAbstract && t.GetCustomAttribute<TableAttribute>() != null);
|
|
||||||
|
|
||||||
foreach (var entityType in entityTypes)
|
// 2. register entities (can overwrite)
|
||||||
|
RegsEntity.InvokeAll(services);
|
||||||
|
|
||||||
|
// 3. register db set factories (can overwrite)
|
||||||
|
RegsDbSetFactory.InvokeAll(services);
|
||||||
|
|
||||||
|
// 4. register repository
|
||||||
|
RegsRepository.InvokeAll(services);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal RepositoryConfiguration() { }
|
||||||
|
|
||||||
|
public void RegisterFromAssembly<TDbContext>(Assembly assembly) where TDbContext : DbContext
|
||||||
|
{
|
||||||
|
void reg(IServiceCollection services)
|
||||||
{
|
{
|
||||||
#region Repository
|
// scan all types in the Assembly
|
||||||
/// register repository
|
var entityTypes = assembly.GetTypes()
|
||||||
// create generic DbRepository<DbContext, TEntity> type
|
.Where(t => t.IsClass && !t.IsAbstract && t.GetCustomAttribute<TableAttribute>() != null);
|
||||||
var repositoryType = typeof(DbRepository<,>).MakeGenericType(typeof(TDbContext), entityType);
|
|
||||||
var interfaceType = typeof(IRepository<>).MakeGenericType(entityType);
|
|
||||||
|
|
||||||
// add into DI container as Scoped
|
foreach (var entityType in entityTypes)
|
||||||
services.AddScoped(interfaceType, repositoryType);
|
{
|
||||||
#endregion Repository
|
#region Repository
|
||||||
|
/// register repository
|
||||||
|
// create generic DbRepository<DbContext, TEntity> type
|
||||||
|
var repositoryType = typeof(DbRepository<,>).MakeGenericType(typeof(TDbContext), entityType);
|
||||||
|
var interfaceType = typeof(IRepository<>).MakeGenericType(entityType);
|
||||||
|
|
||||||
#region DbSetFactory
|
// add into DI container as Scoped
|
||||||
/// register DbSetFactory
|
services.AddScoped(interfaceType, repositoryType);
|
||||||
var addDbSetFactoryMethod = typeof(DependencyInjection)
|
#endregion Repository
|
||||||
.GetMethod(nameof(AddDbSetFactory),
|
|
||||||
BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public);
|
|
||||||
|
|
||||||
var genericMethod = addDbSetFactoryMethod
|
#region DbSetFactory
|
||||||
|
/// register DbSetFactory
|
||||||
|
var addDbSetFactoryMethod = typeof(DependencyInjection)
|
||||||
|
.GetMethod(nameof(AddDbSetFactory),
|
||||||
|
BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public);
|
||||||
|
|
||||||
|
var genericMethod = addDbSetFactoryMethod
|
||||||
#if NET
|
#if NET
|
||||||
!
|
!
|
||||||
#endif
|
#endif
|
||||||
.MakeGenericMethod(typeof(TDbContext), entityType);
|
.MakeGenericMethod(typeof(TDbContext), entityType);
|
||||||
genericMethod.Invoke(null, new [] { services, null });
|
genericMethod.Invoke(null, new [] { services, null });
|
||||||
#endregion DbSetFactory
|
#endregion DbSetFactory
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RegsFromAssembly.Enqueue(reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
RegsFromAssembly.Enqueue(reg);
|
public void RegisterEntity<TDbContext, TEntity>(Func<TDbContext, DbSet<TEntity>>
|
||||||
}
|
|
||||||
|
|
||||||
public void RegisterEntity<TDbContext, TEntity>(Func<TDbContext, DbSet<TEntity>>
|
|
||||||
#if NET
|
#if NET
|
||||||
?
|
?
|
||||||
#endif
|
#endif
|
||||||
dbSetFactory = null)
|
dbSetFactory = null)
|
||||||
where TDbContext : DbContext
|
where TDbContext : DbContext
|
||||||
where TEntity : class
|
where TEntity : class
|
||||||
{
|
{
|
||||||
void reg(IServiceCollection services)
|
void reg(IServiceCollection services)
|
||||||
=> services
|
=> services
|
||||||
.AddScoped<IRepository<TEntity>, DbRepository<TDbContext, TEntity>>()
|
.AddScoped<IRepository<TEntity>, DbRepository<TDbContext, TEntity>>()
|
||||||
.AddDbSetFactory(dbSetFactory);
|
.AddDbSetFactory(dbSetFactory);
|
||||||
|
|
||||||
RegsEntity.Enqueue(reg);
|
RegsEntity.Enqueue(reg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RegisterDbSetFactory<TDbContext, TEntity>(Func<TDbContext, DbSet<TEntity>> dbSetFactory)
|
||||||
|
where TDbContext : DbContext
|
||||||
|
where TEntity : class
|
||||||
|
=> RegsDbSetFactory.Enqueue(s => s.AddDbSetFactory(dbSetFactory));
|
||||||
|
|
||||||
|
public void RegisterDefaultRepository<TDbContext>()
|
||||||
|
where TDbContext : DbContext
|
||||||
|
=> RegsRepository.Enqueue(s => s.AddScoped<IRepository, DbRepository<TDbContext>>());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RegisterDbSetFactory<TDbContext, TEntity>(Func<TDbContext, DbSet<TEntity>> dbSetFactory)
|
private static void InvokeAll<T>(this Queue<Action<T>> queue, T services)
|
||||||
where TDbContext : DbContext
|
{
|
||||||
where TEntity : class
|
while (queue.Count > 0)
|
||||||
=> RegsDbSetFactory.Enqueue(s => s.AddDbSetFactory(dbSetFactory));
|
queue.Dequeue().Invoke(services);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void InvokeAll<T>(this Queue<Action<T>> queue, T services)
|
internal static IServiceCollection AddDbSetFactory<TDbContext, TEntity>(this IServiceCollection services, Func<TDbContext, DbSet<TEntity>>
|
||||||
{
|
|
||||||
while (queue.Count > 0)
|
|
||||||
queue.Dequeue().Invoke(services);
|
|
||||||
}
|
|
||||||
|
|
||||||
internal static IServiceCollection AddDbSetFactory<TDbContext, TEntity>(this IServiceCollection services, Func<TDbContext, DbSet<TEntity>>
|
|
||||||
#if NET
|
#if NET
|
||||||
?
|
?
|
||||||
#endif
|
#endif
|
||||||
create = null)
|
create = null)
|
||||||
where TDbContext : DbContext
|
where TDbContext : DbContext
|
||||||
where TEntity : class
|
where TEntity : class
|
||||||
{
|
{
|
||||||
#if NET
|
#if NET
|
||||||
create ??= ctx => ctx.Set<TEntity>();
|
create ??= ctx => ctx.Set<TEntity>();
|
||||||
#elif NETFRAMEWORK
|
#elif NETFRAMEWORK
|
||||||
if(create is null)
|
if(create is null)
|
||||||
create = ctx => ctx.Set<TEntity>();
|
create = ctx => ctx.Set<TEntity>();
|
||||||
#endif
|
#endif
|
||||||
services.AddSingleton(_ => new DbSetFactory<TDbContext, TEntity>(create));
|
services.AddSingleton(_ => new DbSetFactory<TDbContext, TEntity>(create));
|
||||||
return services;
|
return services;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if NETFRAMEWORK
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@@ -13,9 +13,9 @@
|
|||||||
<RepositoryUrl>http://git.dd:3000/AppStd/WebCoreModules.git</RepositoryUrl>
|
<RepositoryUrl>http://git.dd:3000/AppStd/WebCoreModules.git</RepositoryUrl>
|
||||||
<RepositoryType>digital data core abstractions clean architecture</RepositoryType>
|
<RepositoryType>digital data core abstractions clean architecture</RepositoryType>
|
||||||
<PackageTags>digital data core infrastructure clean architecture</PackageTags>
|
<PackageTags>digital data core infrastructure clean architecture</PackageTags>
|
||||||
<Version>2.5.0</Version>
|
<Version>2.6.1</Version>
|
||||||
<AssemblyVersion>2.5.0</AssemblyVersion>
|
<AssemblyVersion>2.6.1</AssemblyVersion>
|
||||||
<FileVersion>2.5.0</FileVersion>
|
<FileVersion>2.6.1</FileVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -41,18 +41,22 @@
|
|||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.32" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.32" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="3.1.32" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.20" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.20" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.20" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.15" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.15" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.15" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user