You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// public static partial class QueryIncludeFilterExtensions
17
+
// {
18
+
// /// <summary>
19
+
// /// An IQueryable<T> extension method that include and filter related entities.
20
+
// /// </summary>
21
+
// /// <typeparam name="T">Generic type parameter.</typeparam>
22
+
// /// <typeparam name="TChild">Type of the child.</typeparam>
23
+
// /// <param name="query">The query to filter included related entities.</param>
24
+
// /// <param name="queryIncludeFilter">The query filter to apply on included related entities.</param>
25
+
// /// <returns>An IQueryable<T> that include and filter related entities.</returns>
26
+
// public static IQueryable<T> ThenIncludeFilter<TEntity, TPreviousProperty, TChild>(this IIncludableQueryable<TEntity, IEnumerable<TPreviousProperty>> source, Expression<Func<TPreviousProperty, IEnumerable<TChild>>> queryIncludeFilter) where TPreviousProperty : class where TChild : class
// /// An IQueryable<T> extension method that include and filter related entities.
33
+
// /// </summary>
34
+
// /// <typeparam name="T">Generic type parameter.</typeparam>
35
+
// /// <typeparam name="TChild">Type of the child.</typeparam>
36
+
// /// <param name="query">The query to filter included related entities.</param>
37
+
// /// <param name="queryIncludeFilter">The query filter to apply on included related entities.</param>
38
+
// /// <returns>An IQueryable<T> that include and filter related entities.</returns>
39
+
// public static IQueryable<T> ThenIncludeFilter<TEntity, TPreviousProperty, TChild>(this IIncludableQueryable<TEntity, IEnumerable<TPreviousProperty>> source, Expression<Func<TPreviousProperty, TChild>> queryIncludeFilter) where TPreviousProperty : class where TChild : class
0 commit comments