using Microsoft.EntityFrameworkCore; #if NETFRAMEWORK using System; #endif namespace DigitalData.Core.Infrastructure.Factory #if NET ; #elif NETFRAMEWORK { #endif public class DbSetFactory where TDbContext : DbContext where TEntity : class { public readonly Func> Create; public DbSetFactory(Func> create) { Create = create; } } #if NETFRAMEWORK } #endif