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

9 lines
170 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Microsoft.EntityFrameworkCore;
namespace Hncore.Infrastructure.EF
{
public interface IQueryDbContext
{
DbContext DbContext { get; }
}
}