Files
juipnet/Infrastructure/Hncore.Infrastructure/EF/IQueryDbContext.cs

9 lines
162 B
C#
Raw Normal View History

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