15 lines
407 B
C#
15 lines
407 B
C#
// using System.Linq.Expressions;
|
|
//
|
|
// namespace Baguette.Querying.EntityFrameworkCore;
|
|
//
|
|
// public interface IQueryInjector
|
|
// {
|
|
// Expression Inject(Expression expression, object filters);
|
|
// }
|
|
//
|
|
// public interface IQueryInjector<in TFilters, TModel> : IQueryInjector where TFilters : notnull where TModel : notnull
|
|
// {
|
|
// Expression Inject(Expression expression, TFilters filters);
|
|
// }
|
|
|