forked from dotnet/efcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEF.CompileAsyncQuery.tt
More file actions
132 lines (123 loc) · 6.85 KB
/
Copy pathEF.CompileAsyncQuery.tt
File metadata and controls
132 lines (123 loc) · 6.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="System.Linq" #>
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// <auto-generated />
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Threading;
using System.Threading.Tasks;
using JetBrains.Annotations;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.EntityFrameworkCore.Query.Internal;
#nullable enable
namespace Microsoft.EntityFrameworkCore
{
public static partial class EF
{
/// <summary>
/// Creates a compiled query delegate that when invoked will execute the specified LINQ query.
/// </summary>
/// <typeparam name="TContext">The target DbContext type.</typeparam>
/// <typeparam name="TResult">The query result type.</typeparam>
/// <param name="queryExpression">The LINQ query expression.</param>
/// <returns>A delegate that can be invoked to execute the compiled query.</returns>
public static Func<TContext, IAsyncEnumerable<TResult>> CompileAsyncQuery<TContext, TResult>(
[NotNull] Expression<Func<TContext, DbSet<TResult>>> queryExpression)
where TContext : DbContext
where TResult : class
=> new CompiledAsyncEnumerableQuery<TContext, TResult>(queryExpression).Execute;
<#
var ordinal = new[] { "first", "second", "third", "fourth", "fifth", "sixth", "seventh", "eighth", "ninth", "tenth", "eleventh", "twelfth", "thirteenth", "fourteenth", "fifteenth", "sixteenth" };
var maxParameters = 15;
for (var parameterCount = 0; parameterCount <= maxParameters; parameterCount++)
{
var paramsList = string.Join("", Enumerable.Range(1, parameterCount).Select(e => "TParam" + e + ", "));
#>
/// <summary>
/// Creates a compiled query delegate that when invoked will execute the specified LINQ query.
/// </summary>
/// <typeparam name="TContext">The target DbContext type.</typeparam>
<# for (var i = 1; i <= parameterCount; i++) { #>
/// <typeparam name="TParam<#= i #>">The type of the <#= ordinal[i - 1] #> query parameter.</typeparam>
<# } #>
/// <typeparam name="TResult">The query result type.</typeparam>
/// <typeparam name="TProperty">The included property type.</typeparam>
/// <param name="queryExpression">The LINQ query expression.</param>
/// <returns>A delegate that can be invoked to execute the compiled query.</returns>
<# if (parameterCount <= 2 ) { #>
public static Func<TContext, <#= paramsList #>IAsyncEnumerable<TResult>> CompileAsyncQuery<TContext, <#= paramsList #>TResult, TProperty>(
<# } else { #>
public static Func<TContext, <#= paramsList #>IAsyncEnumerable<TResult>> CompileAsyncQuery<
TContext, <#= paramsList #>TResult, TProperty>(
<# } #>
[NotNull] Expression<Func<TContext, <#= paramsList #>IIncludableQueryable<TResult, TProperty>>> queryExpression)
where TContext : DbContext
=> new CompiledAsyncEnumerableQuery<TContext, TResult>(queryExpression).Execute;
/// <summary>
/// Creates a compiled query delegate that when invoked will execute the specified LINQ query.
/// </summary>
/// <typeparam name="TContext">The target DbContext type.</typeparam>
<# for (var i = 1; i <= parameterCount; i++) { #>
/// <typeparam name="TParam<#= i #>">The type of the <#= ordinal[i - 1] #> query parameter.</typeparam>
<# } #>
/// <typeparam name="TResult">The query result type.</typeparam>
/// <param name="queryExpression">The LINQ query expression.</param>
/// <returns>A delegate that can be invoked to execute the compiled query.</returns>
<# if (parameterCount <= 2 ) { #>
public static Func<TContext, <#= paramsList #>IAsyncEnumerable<TResult>> CompileAsyncQuery<TContext, <#= paramsList #>TResult>(
<# } else { #>
public static Func<TContext, <#= paramsList #>IAsyncEnumerable<TResult>> CompileAsyncQuery<
TContext, <#= paramsList #>TResult>(
<# } #>
[NotNull] Expression<Func<TContext, <#= paramsList #>IQueryable<TResult>>> queryExpression)
where TContext : DbContext
=> new CompiledAsyncEnumerableQuery<TContext, TResult>(queryExpression).Execute;
/// <summary>
/// Creates a compiled query delegate that when invoked will execute the specified LINQ query.
/// </summary>
/// <typeparam name="TContext">The target DbContext type.</typeparam>
<# for (var i = 1; i <= parameterCount; i++) { #>
/// <typeparam name="TParam<#= i #>">The type of the <#= ordinal[i - 1] #> query parameter.</typeparam>
<# } #>
/// <typeparam name="TResult">The query result type.</typeparam>
/// <param name="queryExpression">The LINQ query expression.</param>
/// <returns>A delegate that can be invoked to execute the compiled query.</returns>
<# if (parameterCount <= 3 ) { #>
public static Func<TContext, <#= paramsList #>Task<TResult>> CompileAsyncQuery<TContext, <#= paramsList #>TResult>(
<# } else { #>
public static Func<TContext, <#= paramsList #>Task<TResult>> CompileAsyncQuery<
TContext, <#= paramsList #>TResult>(
<# } #>
[NotNull] Expression<Func<TContext, <#= paramsList #>TResult>> queryExpression)
where TContext : DbContext
=> new CompiledAsyncTaskQuery<TContext, TResult>(queryExpression).ExecuteAsync;
<# if (parameterCount < 15) { #>
/// <summary>
/// Creates a compiled query delegate that when invoked will execute the specified LINQ query.
/// </summary>
/// <typeparam name="TContext">The target DbContext type.</typeparam>
<# for (var i = 1; i <= parameterCount; i++) { #>
/// <typeparam name="TParam<#= i #>">The type of the <#= ordinal[i - 1] #> query parameter.</typeparam>
<# } #>
/// <typeparam name="TResult">The query result type.</typeparam>
/// <param name="queryExpression">The LINQ query expression.</param>
/// <returns>A delegate that can be invoked to execute the compiled query.</returns>
<# if (parameterCount <= 3 ) { #>
public static Func<TContext, <#= paramsList #>CancellationToken, Task<TResult>> CompileAsyncQuery<TContext, <#= paramsList #>TResult>(
<# } else { #>
public static Func<TContext, <#= paramsList #>CancellationToken, Task<TResult>> CompileAsyncQuery<
TContext, <#= paramsList #>TResult>(
<# } #>
[NotNull] Expression<Func<TContext, <#= paramsList #>CancellationToken, TResult>> queryExpression)
where TContext : DbContext
=> new CompiledAsyncTaskQuery<TContext, TResult>(queryExpression).ExecuteAsync;
<# } #>
<#
}
#>
}
}