Files

9 lines
162 B
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using Microsoft.EntityFrameworkCore;
namespace Hncore.Infrastructure.EF
{
public interface IQueryDbContext
{
DbContext DbContext { get; }
}
}