9 lines
170 B
C#
9 lines
170 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace Hncore.Infrastructure.EF
|
||
|
|
{
|
||
|
|
public interface IQueryDbContext
|
||
|
|
{
|
||
|
|
DbContext DbContext { get; }
|
||
|
|
}
|
||
|
|
}
|