dotnet-db-context/PoweredSoft.DbContext.Core/IDbQueryService.cs

11 lines
219 B
C#
Raw Permalink Normal View History

2021-09-20 10:21:48 -04:00
using System.Linq;
namespace PoweredSoft.DbContext.Core
{
public interface IDbQueryService : IOrderedQueryable
{
IDbQueryService AsNoTracking();
IDbQueryService Include(string path);
}
}