@tsonic/efcore 10.0.2 → 10.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +52 -34
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +131 -65
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +350 -252
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +58 -54
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +20 -14
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +115 -45
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +40 -43
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +264 -236
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +27 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -7
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +763 -381
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +311 -241
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +704 -539
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +18 -13
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +11 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1041 -691
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +125 -114
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +65 -63
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +367 -311
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +7 -5
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +647 -685
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +294 -283
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +233 -294
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +17 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +103 -92
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +372 -435
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +46 -45
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +19 -31
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +155 -130
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +94 -39
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +34 -46
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -23,6 +23,8 @@ import * as System_Linq_Expressions_Internal from "@tsonic/dotnet/System.Linq.Ex
|
|
|
23
23
|
import type { ConstantExpression, Expression, ExpressionType, ExpressionVisitor } from "@tsonic/dotnet/System.Linq.Expressions.js";
|
|
24
24
|
|
|
25
25
|
export interface ITableBasedExpression$instance {
|
|
26
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_SqlExpressions_ITableBasedExpression: never;
|
|
27
|
+
|
|
26
28
|
readonly Table: ITableBase;
|
|
27
29
|
}
|
|
28
30
|
|
|
@@ -30,13 +32,15 @@ export interface ITableBasedExpression$instance {
|
|
|
30
32
|
export type ITableBasedExpression = ITableBasedExpression$instance;
|
|
31
33
|
|
|
32
34
|
export interface ColumnValueSetter$instance {
|
|
35
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
36
|
+
|
|
33
37
|
Column: ColumnExpression;
|
|
34
38
|
Value: SqlExpression;
|
|
35
39
|
Deconstruct(Column: ColumnExpression, Value: SqlExpression): void;
|
|
36
40
|
Equals(obj: unknown): boolean;
|
|
37
41
|
Equals(other: ColumnValueSetter): boolean;
|
|
38
42
|
GetHashCode(): int;
|
|
39
|
-
ToString(): string
|
|
43
|
+
ToString(): string;
|
|
40
44
|
}
|
|
41
45
|
|
|
42
46
|
|
|
@@ -47,19 +51,18 @@ export const ColumnValueSetter: {
|
|
|
47
51
|
|
|
48
52
|
export type ColumnValueSetter = ColumnValueSetter$instance;
|
|
49
53
|
|
|
50
|
-
export
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
|
|
54
|
+
export interface AtTimeZoneExpression$instance extends SqlExpression$instance {
|
|
55
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
56
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
55
57
|
|
|
56
|
-
export interface AtTimeZoneExpression$instance extends AtTimeZoneExpression$protected, SqlExpression$instance {
|
|
57
58
|
readonly Operand: SqlExpression;
|
|
58
59
|
readonly TimeZone: SqlExpression;
|
|
59
60
|
Equals(obj: unknown): boolean;
|
|
60
61
|
GetHashCode(): int;
|
|
62
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
61
63
|
Quote(): Expression;
|
|
62
64
|
Update(operand: SqlExpression, timeZone: SqlExpression): AtTimeZoneExpression;
|
|
65
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
63
66
|
}
|
|
64
67
|
|
|
65
68
|
|
|
@@ -76,20 +79,19 @@ export interface __AtTimeZoneExpression$views {
|
|
|
76
79
|
export type AtTimeZoneExpression = AtTimeZoneExpression$instance & __AtTimeZoneExpression$views;
|
|
77
80
|
|
|
78
81
|
|
|
79
|
-
export
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
|
|
82
|
+
export interface CaseExpression$instance extends SqlExpression$instance {
|
|
83
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
84
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
84
85
|
|
|
85
|
-
export interface CaseExpression$instance extends CaseExpression$protected, SqlExpression$instance {
|
|
86
86
|
readonly ElseResult: SqlExpression | undefined;
|
|
87
|
-
readonly Operand: SqlExpression;
|
|
87
|
+
readonly Operand: SqlExpression | undefined;
|
|
88
88
|
readonly WhenClauses: IReadOnlyList<CaseWhenClause>;
|
|
89
89
|
Equals(obj: unknown): boolean;
|
|
90
90
|
GetHashCode(): int;
|
|
91
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
91
92
|
Quote(): Expression;
|
|
92
93
|
Update(operand: SqlExpression, whenClauses: IReadOnlyList<CaseWhenClause>, elseResult: SqlExpression): CaseExpression;
|
|
94
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
93
95
|
}
|
|
94
96
|
|
|
95
97
|
|
|
@@ -122,19 +124,18 @@ export const CaseWhenClause: {
|
|
|
122
124
|
|
|
123
125
|
export type CaseWhenClause = CaseWhenClause$instance;
|
|
124
126
|
|
|
125
|
-
export
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
}
|
|
129
|
-
|
|
127
|
+
export interface CollateExpression$instance extends SqlExpression$instance {
|
|
128
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
129
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
130
130
|
|
|
131
|
-
export interface CollateExpression$instance extends CollateExpression$protected, SqlExpression$instance {
|
|
132
131
|
readonly Collation: string;
|
|
133
132
|
readonly Operand: SqlExpression;
|
|
134
133
|
Equals(obj: unknown): boolean;
|
|
135
134
|
GetHashCode(): int;
|
|
135
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
136
136
|
Quote(): Expression;
|
|
137
137
|
Update(operand: SqlExpression): CollateExpression;
|
|
138
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
138
139
|
}
|
|
139
140
|
|
|
140
141
|
|
|
@@ -151,13 +152,10 @@ export interface __CollateExpression$views {
|
|
|
151
152
|
export type CollateExpression = CollateExpression$instance & __CollateExpression$views;
|
|
152
153
|
|
|
153
154
|
|
|
154
|
-
export
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
}
|
|
158
|
-
|
|
155
|
+
export interface ColumnExpression$instance extends SqlExpression$instance {
|
|
156
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
157
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
159
158
|
|
|
160
|
-
export interface ColumnExpression$instance extends ColumnExpression$protected, SqlExpression$instance {
|
|
161
159
|
readonly Column: IColumnBase | undefined;
|
|
162
160
|
readonly IsNullable: boolean;
|
|
163
161
|
readonly Name: string;
|
|
@@ -166,8 +164,10 @@ export interface ColumnExpression$instance extends ColumnExpression$protected, S
|
|
|
166
164
|
Equals(obj: unknown): boolean;
|
|
167
165
|
GetHashCode(): int;
|
|
168
166
|
MakeNullable(): ColumnExpression;
|
|
167
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
169
168
|
Quote(): Expression;
|
|
170
169
|
ToString(): string;
|
|
170
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
|
|
@@ -185,18 +185,16 @@ export interface __ColumnExpression$views {
|
|
|
185
185
|
export type ColumnExpression = ColumnExpression$instance & __ColumnExpression$views;
|
|
186
186
|
|
|
187
187
|
|
|
188
|
-
export
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): CrossApplyExpression;
|
|
192
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
193
|
-
}
|
|
188
|
+
export interface CrossApplyExpression$instance extends JoinExpressionBase$instance {
|
|
189
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
190
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
194
191
|
|
|
195
|
-
|
|
196
|
-
export interface CrossApplyExpression$instance extends CrossApplyExpression$protected, JoinExpressionBase$instance {
|
|
197
192
|
Equals(obj: unknown): boolean;
|
|
198
193
|
GetHashCode(): int;
|
|
194
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
199
195
|
Quote(): Expression;
|
|
196
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
197
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): CrossApplyExpression;
|
|
200
198
|
}
|
|
201
199
|
|
|
202
200
|
|
|
@@ -213,18 +211,16 @@ export interface __CrossApplyExpression$views {
|
|
|
213
211
|
export type CrossApplyExpression = CrossApplyExpression$instance & __CrossApplyExpression$views;
|
|
214
212
|
|
|
215
213
|
|
|
216
|
-
export
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): CrossJoinExpression;
|
|
220
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
221
|
-
}
|
|
222
|
-
|
|
214
|
+
export interface CrossJoinExpression$instance extends JoinExpressionBase$instance {
|
|
215
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
216
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
223
217
|
|
|
224
|
-
export interface CrossJoinExpression$instance extends CrossJoinExpression$protected, JoinExpressionBase$instance {
|
|
225
218
|
Equals(obj: unknown): boolean;
|
|
226
219
|
GetHashCode(): int;
|
|
220
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
227
221
|
Quote(): Expression;
|
|
222
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
223
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): CrossJoinExpression;
|
|
228
224
|
}
|
|
229
225
|
|
|
230
226
|
|
|
@@ -241,12 +237,10 @@ export interface __CrossJoinExpression$views {
|
|
|
241
237
|
export type CrossJoinExpression = CrossJoinExpression$instance & __CrossJoinExpression$views;
|
|
242
238
|
|
|
243
239
|
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
240
|
+
export interface DeleteExpression$instance extends Expression {
|
|
241
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
242
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
248
243
|
|
|
249
|
-
export interface DeleteExpression$instance extends DeleteExpression$protected, Expression {
|
|
250
244
|
readonly NodeType: ExpressionType;
|
|
251
245
|
readonly SelectExpression: SelectExpression;
|
|
252
246
|
readonly Table: TableExpression;
|
|
@@ -258,6 +252,7 @@ export interface DeleteExpression$instance extends DeleteExpression$protected, E
|
|
|
258
252
|
Print(expressionPrinter: ExpressionPrinter): void;
|
|
259
253
|
Quote(): Expression;
|
|
260
254
|
Update(table: TableExpression, selectExpression: SelectExpression): DeleteExpression;
|
|
255
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
261
256
|
}
|
|
262
257
|
|
|
263
258
|
|
|
@@ -277,18 +272,17 @@ export interface DeleteExpression$instance extends Microsoft_EntityFrameworkCore
|
|
|
277
272
|
export type DeleteExpression = DeleteExpression$instance & __DeleteExpression$views;
|
|
278
273
|
|
|
279
274
|
|
|
280
|
-
export
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
}
|
|
284
|
-
|
|
275
|
+
export interface DistinctExpression$instance extends SqlExpression$instance {
|
|
276
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
277
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
285
278
|
|
|
286
|
-
export interface DistinctExpression$instance extends DistinctExpression$protected, SqlExpression$instance {
|
|
287
279
|
readonly Operand: SqlExpression;
|
|
288
280
|
Equals(obj: unknown): boolean;
|
|
289
281
|
GetHashCode(): int;
|
|
282
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
290
283
|
Quote(): Expression;
|
|
291
284
|
Update(operand: SqlExpression): DistinctExpression;
|
|
285
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
292
286
|
}
|
|
293
287
|
|
|
294
288
|
|
|
@@ -305,20 +299,18 @@ export interface __DistinctExpression$views {
|
|
|
305
299
|
export type DistinctExpression = DistinctExpression$instance & __DistinctExpression$views;
|
|
306
300
|
|
|
307
301
|
|
|
308
|
-
export
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): ExceptExpression;
|
|
312
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
313
|
-
}
|
|
314
|
-
|
|
302
|
+
export interface ExceptExpression$instance extends SetOperationBase$instance {
|
|
303
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
304
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
315
305
|
|
|
316
|
-
export interface ExceptExpression$instance extends ExceptExpression$protected, SetOperationBase$instance {
|
|
317
306
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
318
307
|
Equals(obj: unknown): boolean;
|
|
319
308
|
GetHashCode(): int;
|
|
309
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
320
310
|
Quote(): Expression;
|
|
311
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
321
312
|
WithAlias(newAlias: string): ExceptExpression;
|
|
313
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): ExceptExpression;
|
|
322
314
|
}
|
|
323
315
|
|
|
324
316
|
|
|
@@ -336,18 +328,17 @@ export interface __ExceptExpression$views {
|
|
|
336
328
|
export type ExceptExpression = ExceptExpression$instance & __ExceptExpression$views;
|
|
337
329
|
|
|
338
330
|
|
|
339
|
-
export
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
}
|
|
343
|
-
|
|
331
|
+
export interface ExistsExpression$instance extends SqlExpression$instance {
|
|
332
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
333
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
344
334
|
|
|
345
|
-
export interface ExistsExpression$instance extends ExistsExpression$protected, SqlExpression$instance {
|
|
346
335
|
readonly Subquery: SelectExpression;
|
|
347
336
|
Equals(obj: unknown): boolean;
|
|
348
337
|
GetHashCode(): int;
|
|
338
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
349
339
|
Quote(): Expression;
|
|
350
340
|
Update(subquery: SelectExpression): ExistsExpression;
|
|
341
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
351
342
|
}
|
|
352
343
|
|
|
353
344
|
|
|
@@ -364,24 +355,22 @@ export interface __ExistsExpression$views {
|
|
|
364
355
|
export type ExistsExpression = ExistsExpression$instance & __ExistsExpression$views;
|
|
365
356
|
|
|
366
357
|
|
|
367
|
-
export
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
372
|
-
}
|
|
373
|
-
|
|
358
|
+
export interface FromSqlExpression$instance extends TableExpressionBase$instance {
|
|
359
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
360
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
361
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_SqlExpressions_ITableBasedExpression: never;
|
|
374
362
|
|
|
375
|
-
|
|
376
|
-
readonly Alias: string;
|
|
363
|
+
readonly Alias: string | string | undefined;
|
|
377
364
|
readonly Arguments: Expression;
|
|
378
365
|
readonly Sql: string;
|
|
379
366
|
readonly Table: ITableBase;
|
|
380
367
|
Clone(alias: string, cloningVisitor: ExpressionVisitor): TableExpressionBase;
|
|
381
368
|
Equals(obj: unknown): boolean;
|
|
382
369
|
GetHashCode(): int;
|
|
370
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
383
371
|
Quote(): Expression;
|
|
384
372
|
Update(arguments: Expression): FromSqlExpression;
|
|
373
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
385
374
|
}
|
|
386
375
|
|
|
387
376
|
|
|
@@ -403,25 +392,24 @@ export interface FromSqlExpression$instance extends ITableBasedExpression$instan
|
|
|
403
392
|
export type FromSqlExpression = FromSqlExpression$instance & __FromSqlExpression$views;
|
|
404
393
|
|
|
405
394
|
|
|
406
|
-
export
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
}
|
|
395
|
+
export interface InExpression$instance extends SqlExpression$instance {
|
|
396
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
397
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
410
398
|
|
|
411
|
-
|
|
412
|
-
export interface InExpression$instance extends InExpression$protected, SqlExpression$instance {
|
|
413
399
|
readonly Item: SqlExpression;
|
|
414
|
-
readonly Subquery: SelectExpression;
|
|
415
|
-
readonly Values: IReadOnlyList<SqlExpression
|
|
400
|
+
readonly Subquery: SelectExpression | undefined;
|
|
401
|
+
readonly Values: IReadOnlyList<SqlExpression> | undefined;
|
|
416
402
|
readonly ValuesParameter: SqlParameterExpression | undefined;
|
|
417
403
|
ApplyTypeMapping(typeMapping: RelationalTypeMapping): InExpression;
|
|
418
404
|
Equals(obj: unknown): boolean;
|
|
419
405
|
GetHashCode(): int;
|
|
406
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
420
407
|
Quote(): Expression;
|
|
421
408
|
Update(item: SqlExpression, subquery: SelectExpression): InExpression;
|
|
422
409
|
Update(item: SqlExpression, values: IReadOnlyList<SqlExpression>): InExpression;
|
|
423
410
|
Update(item: SqlExpression, valuesParameter: SqlParameterExpression): InExpression;
|
|
424
411
|
Update(item: SqlExpression, subquery: SelectExpression, values: IReadOnlyList<SqlExpression>, valuesParameter: SqlParameterExpression): InExpression;
|
|
412
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
425
413
|
}
|
|
426
414
|
|
|
427
415
|
|
|
@@ -440,18 +428,16 @@ export interface __InExpression$views {
|
|
|
440
428
|
export type InExpression = InExpression$instance & __InExpression$views;
|
|
441
429
|
|
|
442
430
|
|
|
443
|
-
export
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
447
|
-
}
|
|
448
|
-
|
|
431
|
+
export interface InnerJoinExpression$instance extends PredicateJoinExpressionBase$instance {
|
|
432
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
433
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
449
434
|
|
|
450
|
-
export interface InnerJoinExpression$instance extends InnerJoinExpression$protected, PredicateJoinExpressionBase$instance {
|
|
451
435
|
Equals(obj: unknown): boolean;
|
|
452
436
|
GetHashCode(): int;
|
|
437
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
453
438
|
Quote(): Expression;
|
|
454
439
|
Update(table: TableExpressionBase, joinPredicate: SqlExpression): JoinExpressionBase;
|
|
440
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): InnerJoinExpression;
|
|
455
441
|
}
|
|
456
442
|
|
|
457
443
|
|
|
@@ -469,20 +455,18 @@ export interface __InnerJoinExpression$views {
|
|
|
469
455
|
export type InnerJoinExpression = InnerJoinExpression$instance & __InnerJoinExpression$views;
|
|
470
456
|
|
|
471
457
|
|
|
472
|
-
export
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): IntersectExpression;
|
|
476
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
477
|
-
}
|
|
478
|
-
|
|
458
|
+
export interface IntersectExpression$instance extends SetOperationBase$instance {
|
|
459
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
460
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
479
461
|
|
|
480
|
-
export interface IntersectExpression$instance extends IntersectExpression$protected, SetOperationBase$instance {
|
|
481
462
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
482
463
|
Equals(obj: unknown): boolean;
|
|
483
464
|
GetHashCode(): int;
|
|
465
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
484
466
|
Quote(): Expression;
|
|
467
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
485
468
|
WithAlias(newAlias: string): IntersectExpression;
|
|
469
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): IntersectExpression;
|
|
486
470
|
}
|
|
487
471
|
|
|
488
472
|
|
|
@@ -500,26 +484,24 @@ export interface __IntersectExpression$views {
|
|
|
500
484
|
export type IntersectExpression = IntersectExpression$instance & __IntersectExpression$views;
|
|
501
485
|
|
|
502
486
|
|
|
503
|
-
export
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
487
|
+
export interface JoinExpressionBase$instance extends TableExpressionBase$instance {
|
|
488
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
489
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
507
490
|
|
|
508
|
-
export interface JoinExpressionBase$instance extends JoinExpressionBase$protected, TableExpressionBase$instance {
|
|
509
491
|
readonly IsPrunable: boolean;
|
|
510
492
|
readonly Table: TableExpressionBase;
|
|
511
493
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
512
494
|
Equals(obj: unknown): boolean;
|
|
513
495
|
GetHashCode(): int;
|
|
514
496
|
GetRequiredAlias(): string;
|
|
497
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
515
498
|
Quote(): Expression;
|
|
516
499
|
Update(table: TableExpressionBase): JoinExpressionBase;
|
|
517
500
|
WithAlias(newAlias: string): TableExpressionBase;
|
|
518
501
|
}
|
|
519
502
|
|
|
520
503
|
|
|
521
|
-
export const JoinExpressionBase: {
|
|
522
|
-
new(table: TableExpressionBase, prunable: boolean, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): JoinExpressionBase;
|
|
504
|
+
export const JoinExpressionBase: (abstract new(table: TableExpressionBase, prunable: boolean, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>) => JoinExpressionBase) & {
|
|
523
505
|
};
|
|
524
506
|
|
|
525
507
|
|
|
@@ -531,20 +513,19 @@ export interface __JoinExpressionBase$views {
|
|
|
531
513
|
export type JoinExpressionBase = JoinExpressionBase$instance & __JoinExpressionBase$views;
|
|
532
514
|
|
|
533
515
|
|
|
534
|
-
export
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
}
|
|
538
|
-
|
|
516
|
+
export interface JsonScalarExpression$instance extends SqlExpression$instance {
|
|
517
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
518
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
539
519
|
|
|
540
|
-
export interface JsonScalarExpression$instance extends JsonScalarExpression$protected, SqlExpression$instance {
|
|
541
520
|
readonly IsNullable: boolean;
|
|
542
521
|
readonly Json: SqlExpression;
|
|
543
522
|
readonly Path: IReadOnlyList<PathSegment>;
|
|
544
523
|
Equals(obj: unknown): boolean;
|
|
545
524
|
GetHashCode(): int;
|
|
525
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
546
526
|
Quote(): Expression;
|
|
547
527
|
Update(json: SqlExpression): JsonScalarExpression;
|
|
528
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
548
529
|
}
|
|
549
530
|
|
|
550
531
|
|
|
@@ -561,17 +542,15 @@ export interface __JsonScalarExpression$views {
|
|
|
561
542
|
export type JsonScalarExpression = JsonScalarExpression$instance & __JsonScalarExpression$views;
|
|
562
543
|
|
|
563
544
|
|
|
564
|
-
export
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
568
|
-
}
|
|
569
|
-
|
|
545
|
+
export interface LeftJoinExpression$instance extends PredicateJoinExpressionBase$instance {
|
|
546
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
547
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
570
548
|
|
|
571
|
-
export interface LeftJoinExpression$instance extends LeftJoinExpression$protected, PredicateJoinExpressionBase$instance {
|
|
572
549
|
Equals(obj: unknown): boolean;
|
|
573
550
|
GetHashCode(): int;
|
|
551
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
574
552
|
Quote(): Expression;
|
|
553
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): LeftJoinExpression;
|
|
575
554
|
}
|
|
576
555
|
|
|
577
556
|
|
|
@@ -589,20 +568,19 @@ export interface __LeftJoinExpression$views {
|
|
|
589
568
|
export type LeftJoinExpression = LeftJoinExpression$instance & __LeftJoinExpression$views;
|
|
590
569
|
|
|
591
570
|
|
|
592
|
-
export
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
}
|
|
596
|
-
|
|
571
|
+
export interface LikeExpression$instance extends SqlExpression$instance {
|
|
572
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
573
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
597
574
|
|
|
598
|
-
export interface LikeExpression$instance extends LikeExpression$protected, SqlExpression$instance {
|
|
599
575
|
readonly EscapeChar: SqlExpression | undefined;
|
|
600
576
|
readonly Match: SqlExpression;
|
|
601
577
|
readonly Pattern: SqlExpression;
|
|
602
578
|
Equals(obj: unknown): boolean;
|
|
603
579
|
GetHashCode(): int;
|
|
580
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
604
581
|
Quote(): Expression;
|
|
605
582
|
Update(match: SqlExpression, pattern: SqlExpression, escapeChar: SqlExpression): LikeExpression;
|
|
583
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
606
584
|
}
|
|
607
585
|
|
|
608
586
|
|
|
@@ -619,12 +597,10 @@ export interface __LikeExpression$views {
|
|
|
619
597
|
export type LikeExpression = LikeExpression$instance & __LikeExpression$views;
|
|
620
598
|
|
|
621
599
|
|
|
622
|
-
export
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
600
|
+
export interface OrderingExpression$instance extends Expression {
|
|
601
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
602
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
626
603
|
|
|
627
|
-
export interface OrderingExpression$instance extends OrderingExpression$protected, Expression {
|
|
628
604
|
readonly Expression: SqlExpression;
|
|
629
605
|
readonly IsAscending: boolean;
|
|
630
606
|
readonly NodeType: ExpressionType;
|
|
@@ -633,6 +609,7 @@ export interface OrderingExpression$instance extends OrderingExpression$protecte
|
|
|
633
609
|
GetHashCode(): int;
|
|
634
610
|
Quote(): Expression;
|
|
635
611
|
Update(expression: SqlExpression): OrderingExpression;
|
|
612
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
636
613
|
}
|
|
637
614
|
|
|
638
615
|
|
|
@@ -651,18 +628,16 @@ export interface OrderingExpression$instance extends Microsoft_EntityFrameworkCo
|
|
|
651
628
|
export type OrderingExpression = OrderingExpression$instance & __OrderingExpression$views;
|
|
652
629
|
|
|
653
630
|
|
|
654
|
-
export
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): OuterApplyExpression;
|
|
658
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
659
|
-
}
|
|
660
|
-
|
|
631
|
+
export interface OuterApplyExpression$instance extends JoinExpressionBase$instance {
|
|
632
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
633
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
661
634
|
|
|
662
|
-
export interface OuterApplyExpression$instance extends OuterApplyExpression$protected, JoinExpressionBase$instance {
|
|
663
635
|
Equals(obj: unknown): boolean;
|
|
664
636
|
GetHashCode(): int;
|
|
637
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
665
638
|
Quote(): Expression;
|
|
639
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
640
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): OuterApplyExpression;
|
|
666
641
|
}
|
|
667
642
|
|
|
668
643
|
|
|
@@ -680,23 +655,21 @@ export interface __OuterApplyExpression$views {
|
|
|
680
655
|
export type OuterApplyExpression = OuterApplyExpression$instance & __OuterApplyExpression$views;
|
|
681
656
|
|
|
682
657
|
|
|
683
|
-
export
|
|
684
|
-
|
|
685
|
-
|
|
658
|
+
export interface PredicateJoinExpressionBase$instance extends JoinExpressionBase$instance {
|
|
659
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
660
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
686
661
|
|
|
687
|
-
|
|
688
|
-
export interface PredicateJoinExpressionBase$instance extends PredicateJoinExpressionBase$protected, JoinExpressionBase$instance {
|
|
689
662
|
readonly JoinPredicate: SqlExpression;
|
|
690
663
|
Equals(obj: unknown): boolean;
|
|
691
664
|
GetHashCode(): int;
|
|
692
665
|
Print(expressionPrinter: ExpressionPrinter): void;
|
|
693
666
|
Quote(): Expression;
|
|
694
667
|
Update(table: TableExpressionBase): JoinExpressionBase;
|
|
668
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
695
669
|
}
|
|
696
670
|
|
|
697
671
|
|
|
698
|
-
export const PredicateJoinExpressionBase: {
|
|
699
|
-
new(table: TableExpressionBase, joinPredicate: SqlExpression, prunable: boolean, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): PredicateJoinExpressionBase;
|
|
672
|
+
export const PredicateJoinExpressionBase: (abstract new(table: TableExpressionBase, joinPredicate: SqlExpression, prunable: boolean, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>) => PredicateJoinExpressionBase) & {
|
|
700
673
|
};
|
|
701
674
|
|
|
702
675
|
|
|
@@ -708,12 +681,10 @@ export interface __PredicateJoinExpressionBase$views {
|
|
|
708
681
|
export type PredicateJoinExpressionBase = PredicateJoinExpressionBase$instance & __PredicateJoinExpressionBase$views;
|
|
709
682
|
|
|
710
683
|
|
|
711
|
-
export
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
684
|
+
export interface ProjectionExpression$instance extends Expression {
|
|
685
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
686
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
715
687
|
|
|
716
|
-
export interface ProjectionExpression$instance extends ProjectionExpression$protected, Expression {
|
|
717
688
|
readonly Alias: string;
|
|
718
689
|
readonly Expression: SqlExpression;
|
|
719
690
|
readonly NodeType: ExpressionType;
|
|
@@ -722,6 +693,7 @@ export interface ProjectionExpression$instance extends ProjectionExpression$prot
|
|
|
722
693
|
GetHashCode(): int;
|
|
723
694
|
Quote(): Expression;
|
|
724
695
|
Update(expression: SqlExpression): ProjectionExpression;
|
|
696
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
725
697
|
}
|
|
726
698
|
|
|
727
699
|
|
|
@@ -740,17 +712,15 @@ export interface ProjectionExpression$instance extends Microsoft_EntityFramework
|
|
|
740
712
|
export type ProjectionExpression = ProjectionExpression$instance & __ProjectionExpression$views;
|
|
741
713
|
|
|
742
714
|
|
|
743
|
-
export
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
747
|
-
}
|
|
748
|
-
|
|
715
|
+
export interface RightJoinExpression$instance extends PredicateJoinExpressionBase$instance {
|
|
716
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
717
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
749
718
|
|
|
750
|
-
export interface RightJoinExpression$instance extends RightJoinExpression$protected, PredicateJoinExpressionBase$instance {
|
|
751
719
|
Equals(obj: unknown): boolean;
|
|
752
720
|
GetHashCode(): int;
|
|
721
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
753
722
|
Quote(): Expression;
|
|
723
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): RightJoinExpression;
|
|
754
724
|
}
|
|
755
725
|
|
|
756
726
|
|
|
@@ -768,19 +738,18 @@ export interface __RightJoinExpression$views {
|
|
|
768
738
|
export type RightJoinExpression = RightJoinExpression$instance & __RightJoinExpression$views;
|
|
769
739
|
|
|
770
740
|
|
|
771
|
-
export
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
}
|
|
775
|
-
|
|
741
|
+
export interface RowNumberExpression$instance extends SqlExpression$instance {
|
|
742
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
743
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
776
744
|
|
|
777
|
-
export interface RowNumberExpression$instance extends RowNumberExpression$protected, SqlExpression$instance {
|
|
778
745
|
readonly Orderings: IReadOnlyList<OrderingExpression>;
|
|
779
746
|
readonly Partitions: IReadOnlyList<SqlExpression>;
|
|
780
747
|
Equals(obj: unknown): boolean;
|
|
781
748
|
GetHashCode(): int;
|
|
749
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
782
750
|
Quote(): Expression;
|
|
783
751
|
Update(partitions: IReadOnlyList<SqlExpression>, orderings: IReadOnlyList<OrderingExpression>): RowNumberExpression;
|
|
752
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
784
753
|
}
|
|
785
754
|
|
|
786
755
|
|
|
@@ -797,18 +766,17 @@ export interface __RowNumberExpression$views {
|
|
|
797
766
|
export type RowNumberExpression = RowNumberExpression$instance & __RowNumberExpression$views;
|
|
798
767
|
|
|
799
768
|
|
|
800
|
-
export
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
}
|
|
804
|
-
|
|
769
|
+
export interface RowValueExpression$instance extends SqlExpression$instance {
|
|
770
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
771
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
805
772
|
|
|
806
|
-
export interface RowValueExpression$instance extends RowValueExpression$protected, SqlExpression$instance {
|
|
807
773
|
readonly Values: IReadOnlyList<SqlExpression>;
|
|
808
774
|
Equals(obj: unknown): boolean;
|
|
809
775
|
GetHashCode(): int;
|
|
776
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
810
777
|
Quote(): Expression;
|
|
811
778
|
Update(values: IReadOnlyList<SqlExpression>): RowValueExpression;
|
|
779
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
812
780
|
}
|
|
813
781
|
|
|
814
782
|
|
|
@@ -825,19 +793,18 @@ export interface __RowValueExpression$views {
|
|
|
825
793
|
export type RowValueExpression = RowValueExpression$instance & __RowValueExpression$views;
|
|
826
794
|
|
|
827
795
|
|
|
828
|
-
export
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
}
|
|
832
|
-
|
|
796
|
+
export interface ScalarSubqueryExpression$instance extends SqlExpression$instance {
|
|
797
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
798
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
833
799
|
|
|
834
|
-
export interface ScalarSubqueryExpression$instance extends ScalarSubqueryExpression$protected, SqlExpression$instance {
|
|
835
800
|
readonly Subquery: SelectExpression;
|
|
836
801
|
ApplyTypeMapping(typeMapping: RelationalTypeMapping): SqlExpression;
|
|
837
802
|
Equals(obj: unknown): boolean;
|
|
838
803
|
GetHashCode(): int;
|
|
804
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
839
805
|
Quote(): Expression;
|
|
840
806
|
Update(subquery: SelectExpression): ScalarSubqueryExpression;
|
|
807
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
841
808
|
}
|
|
842
809
|
|
|
843
810
|
|
|
@@ -854,27 +821,22 @@ export interface __ScalarSubqueryExpression$views {
|
|
|
854
821
|
export type ScalarSubqueryExpression = ScalarSubqueryExpression$instance & __ScalarSubqueryExpression$views;
|
|
855
822
|
|
|
856
823
|
|
|
857
|
-
export
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): SelectExpression;
|
|
861
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
862
|
-
}
|
|
863
|
-
|
|
824
|
+
export interface SelectExpression$instance extends TableExpressionBase$instance {
|
|
825
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
826
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
864
827
|
|
|
865
|
-
export interface SelectExpression$instance extends SelectExpression$protected, TableExpressionBase$instance {
|
|
866
828
|
readonly DebugView: string;
|
|
867
829
|
readonly GroupBy: IReadOnlyList<SqlExpression>;
|
|
868
830
|
get Having(): SqlExpression | undefined;
|
|
869
|
-
set Having(value: SqlExpression);
|
|
831
|
+
set Having(value: SqlExpression | undefined);
|
|
870
832
|
IsDistinct: boolean;
|
|
871
833
|
get Limit(): SqlExpression | undefined;
|
|
872
|
-
set Limit(value: SqlExpression);
|
|
834
|
+
set Limit(value: SqlExpression | undefined);
|
|
873
835
|
get Offset(): SqlExpression | undefined;
|
|
874
|
-
set Offset(value: SqlExpression);
|
|
836
|
+
set Offset(value: SqlExpression | undefined);
|
|
875
837
|
readonly Orderings: IReadOnlyList<OrderingExpression>;
|
|
876
838
|
get Predicate(): SqlExpression | undefined;
|
|
877
|
-
set Predicate(value: SqlExpression);
|
|
839
|
+
set Predicate(value: SqlExpression | undefined);
|
|
878
840
|
readonly Projection: IReadOnlyList<ProjectionExpression>;
|
|
879
841
|
readonly Tables: IReadOnlyList<TableExpressionBase>;
|
|
880
842
|
Tags: ISet<System_Internal.String>;
|
|
@@ -917,6 +879,7 @@ export interface SelectExpression$instance extends SelectExpression$protected, T
|
|
|
917
879
|
IsNonComposedFromSql(): boolean;
|
|
918
880
|
MakeProjectionNullable(sqlExpressionFactory: ISqlExpressionFactory): void;
|
|
919
881
|
PrepareForAggregate(liftOrderings?: boolean): void;
|
|
882
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
920
883
|
PushdownIntoSubquery(): void;
|
|
921
884
|
Quote(): Expression;
|
|
922
885
|
RemoveTpcTableExpression(): SelectExpression;
|
|
@@ -926,6 +889,7 @@ export interface SelectExpression$instance extends SelectExpression$protected, T
|
|
|
926
889
|
SetLimit(sqlExpression: SqlExpression): void;
|
|
927
890
|
SetTables(tables: IReadOnlyList<TableExpressionBase>): void;
|
|
928
891
|
Update(tables: IReadOnlyList<TableExpressionBase>, predicate: SqlExpression, groupBy: IReadOnlyList<SqlExpression>, having: SqlExpression, projections: IReadOnlyList<ProjectionExpression>, orderings: IReadOnlyList<OrderingExpression>, offset: SqlExpression, limit: SqlExpression): SelectExpression;
|
|
892
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
929
893
|
}
|
|
930
894
|
|
|
931
895
|
|
|
@@ -947,26 +911,23 @@ export interface __SelectExpression$views {
|
|
|
947
911
|
export type SelectExpression = SelectExpression$instance & __SelectExpression$views;
|
|
948
912
|
|
|
949
913
|
|
|
950
|
-
export
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
914
|
+
export interface SetOperationBase$instance extends TableExpressionBase$instance {
|
|
915
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
916
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
954
917
|
|
|
955
|
-
|
|
956
|
-
readonly Alias: string;
|
|
918
|
+
readonly Alias: string | string | undefined;
|
|
957
919
|
readonly IsDistinct: boolean;
|
|
958
920
|
readonly Source1: SelectExpression;
|
|
959
921
|
readonly Source2: SelectExpression;
|
|
960
922
|
Equals(obj: unknown): boolean;
|
|
961
923
|
GetHashCode(): int;
|
|
924
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
962
925
|
Quote(): Expression;
|
|
963
926
|
Update(source1: SelectExpression, source2: SelectExpression): SetOperationBase;
|
|
964
927
|
}
|
|
965
928
|
|
|
966
929
|
|
|
967
|
-
export const SetOperationBase: {
|
|
968
|
-
new(alias: string, source1: SelectExpression, source2: SelectExpression, distinct: boolean): SetOperationBase;
|
|
969
|
-
new(alias: string, source1: SelectExpression, source2: SelectExpression, distinct: boolean, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): SetOperationBase;
|
|
930
|
+
export const SetOperationBase: (abstract new(alias: string, source1: SelectExpression, source2: SelectExpression, distinct: boolean) => SetOperationBase) & (abstract new(alias: string, source1: SelectExpression, source2: SelectExpression, distinct: boolean, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>) => SetOperationBase) & {
|
|
970
931
|
};
|
|
971
932
|
|
|
972
933
|
|
|
@@ -978,20 +939,19 @@ export interface __SetOperationBase$views {
|
|
|
978
939
|
export type SetOperationBase = SetOperationBase$instance & __SetOperationBase$views;
|
|
979
940
|
|
|
980
941
|
|
|
981
|
-
export
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
}
|
|
985
|
-
|
|
942
|
+
export interface SqlBinaryExpression$instance extends SqlExpression$instance {
|
|
943
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
944
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
986
945
|
|
|
987
|
-
export interface SqlBinaryExpression$instance extends SqlBinaryExpression$protected, SqlExpression$instance {
|
|
988
946
|
readonly Left: SqlExpression;
|
|
989
947
|
readonly OperatorType: ExpressionType;
|
|
990
948
|
readonly Right: SqlExpression;
|
|
991
949
|
Equals(obj: unknown): boolean;
|
|
992
950
|
GetHashCode(): int;
|
|
951
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
993
952
|
Quote(): Expression;
|
|
994
953
|
Update(left: SqlExpression, right: SqlExpression): SqlBinaryExpression;
|
|
954
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
995
955
|
}
|
|
996
956
|
|
|
997
957
|
|
|
@@ -1008,19 +968,18 @@ export interface __SqlBinaryExpression$views {
|
|
|
1008
968
|
export type SqlBinaryExpression = SqlBinaryExpression$instance & __SqlBinaryExpression$views;
|
|
1009
969
|
|
|
1010
970
|
|
|
1011
|
-
export
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
}
|
|
1015
|
-
|
|
971
|
+
export interface SqlConstantExpression$instance extends SqlExpression$instance {
|
|
972
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
973
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1016
974
|
|
|
1017
|
-
export interface SqlConstantExpression$instance extends SqlConstantExpression$protected, SqlExpression$instance {
|
|
1018
975
|
readonly IsSensitive: boolean;
|
|
1019
976
|
readonly Value: unknown | undefined;
|
|
1020
977
|
ApplyTypeMapping(typeMapping: RelationalTypeMapping): SqlExpression;
|
|
1021
978
|
Equals(obj: unknown): boolean;
|
|
1022
979
|
GetHashCode(): int;
|
|
980
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1023
981
|
Quote(): Expression;
|
|
982
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1024
983
|
}
|
|
1025
984
|
|
|
1026
985
|
|
|
@@ -1041,24 +1000,22 @@ export interface __SqlConstantExpression$views {
|
|
|
1041
1000
|
export type SqlConstantExpression = SqlConstantExpression$instance & __SqlConstantExpression$views;
|
|
1042
1001
|
|
|
1043
1002
|
|
|
1044
|
-
export
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
}
|
|
1048
|
-
|
|
1003
|
+
export interface SqlExpression$instance extends Expression {
|
|
1004
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1005
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1049
1006
|
|
|
1050
|
-
export interface SqlExpression$instance extends SqlExpression$protected, Expression {
|
|
1051
1007
|
readonly NodeType: ExpressionType;
|
|
1052
1008
|
readonly Type: Type;
|
|
1053
1009
|
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
1054
1010
|
Equals(obj: unknown): boolean;
|
|
1055
1011
|
GetHashCode(): int;
|
|
1012
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1056
1013
|
Quote(): Expression;
|
|
1014
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1057
1015
|
}
|
|
1058
1016
|
|
|
1059
1017
|
|
|
1060
|
-
export const SqlExpression: {
|
|
1061
|
-
new(type: Type, typeMapping: RelationalTypeMapping): SqlExpression;
|
|
1018
|
+
export const SqlExpression: (abstract new(type: Type, typeMapping: RelationalTypeMapping) => SqlExpression) & {
|
|
1062
1019
|
};
|
|
1063
1020
|
|
|
1064
1021
|
|
|
@@ -1072,17 +1029,16 @@ export interface SqlExpression$instance extends Microsoft_EntityFrameworkCore_Qu
|
|
|
1072
1029
|
export type SqlExpression = SqlExpression$instance & __SqlExpression$views;
|
|
1073
1030
|
|
|
1074
1031
|
|
|
1075
|
-
export
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1032
|
+
export interface SqlFragmentExpression$instance extends SqlExpression$instance {
|
|
1033
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1034
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1080
1035
|
|
|
1081
|
-
export interface SqlFragmentExpression$instance extends SqlFragmentExpression$protected, SqlExpression$instance {
|
|
1082
1036
|
readonly Sql: string;
|
|
1083
1037
|
Equals(obj: unknown): boolean;
|
|
1084
1038
|
GetHashCode(): int;
|
|
1039
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1085
1040
|
Quote(): Expression;
|
|
1041
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1086
1042
|
}
|
|
1087
1043
|
|
|
1088
1044
|
|
|
@@ -1099,14 +1055,11 @@ export interface __SqlFragmentExpression$views {
|
|
|
1099
1055
|
export type SqlFragmentExpression = SqlFragmentExpression$instance & __SqlFragmentExpression$views;
|
|
1100
1056
|
|
|
1101
1057
|
|
|
1102
|
-
export
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
}
|
|
1106
|
-
|
|
1058
|
+
export interface SqlFunctionExpression$instance extends SqlExpression$instance {
|
|
1059
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1060
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1107
1061
|
|
|
1108
|
-
|
|
1109
|
-
readonly Arguments: IReadOnlyList<SqlExpression>;
|
|
1062
|
+
readonly Arguments: IReadOnlyList<SqlExpression> | undefined;
|
|
1110
1063
|
readonly ArgumentsPropagateNullability: IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
1111
1064
|
readonly Instance: SqlExpression | undefined;
|
|
1112
1065
|
readonly InstancePropagatesNullability: Nullable<System_Internal.Boolean>;
|
|
@@ -1118,9 +1071,11 @@ export interface SqlFunctionExpression$instance extends SqlFunctionExpression$pr
|
|
|
1118
1071
|
ApplyTypeMapping(typeMapping: RelationalTypeMapping): SqlFunctionExpression;
|
|
1119
1072
|
Equals(obj: unknown): boolean;
|
|
1120
1073
|
GetHashCode(): int;
|
|
1074
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1121
1075
|
Quote(): Expression;
|
|
1122
1076
|
Update(instance: SqlExpression, arguments: IReadOnlyList<SqlExpression>): SqlFunctionExpression;
|
|
1123
1077
|
Update(instance: SqlExpression, arguments: IReadOnlyList<SqlExpression>, argumentsPropagateNullability: IReadOnlyList<System_Internal.Boolean>): SqlFunctionExpression;
|
|
1078
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1124
1079
|
}
|
|
1125
1080
|
|
|
1126
1081
|
|
|
@@ -1143,13 +1098,10 @@ export interface __SqlFunctionExpression$views {
|
|
|
1143
1098
|
export type SqlFunctionExpression = SqlFunctionExpression$instance & __SqlFunctionExpression$views;
|
|
1144
1099
|
|
|
1145
1100
|
|
|
1146
|
-
export
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1101
|
+
export interface SqlParameterExpression$instance extends SqlExpression$instance {
|
|
1102
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1103
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1151
1104
|
|
|
1152
|
-
export interface SqlParameterExpression$instance extends SqlParameterExpression$protected, SqlExpression$instance {
|
|
1153
1105
|
readonly InvariantName: string;
|
|
1154
1106
|
readonly IsNullable: boolean;
|
|
1155
1107
|
readonly Name: string;
|
|
@@ -1157,7 +1109,9 @@ export interface SqlParameterExpression$instance extends SqlParameterExpression$
|
|
|
1157
1109
|
ApplyTypeMapping(typeMapping: RelationalTypeMapping): SqlParameterExpression;
|
|
1158
1110
|
Equals(obj: unknown): boolean;
|
|
1159
1111
|
GetHashCode(): int;
|
|
1112
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1160
1113
|
Quote(): Expression;
|
|
1114
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1161
1115
|
}
|
|
1162
1116
|
|
|
1163
1117
|
|
|
@@ -1175,19 +1129,18 @@ export interface __SqlParameterExpression$views {
|
|
|
1175
1129
|
export type SqlParameterExpression = SqlParameterExpression$instance & __SqlParameterExpression$views;
|
|
1176
1130
|
|
|
1177
1131
|
|
|
1178
|
-
export
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1132
|
+
export interface SqlUnaryExpression$instance extends SqlExpression$instance {
|
|
1133
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1134
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1183
1135
|
|
|
1184
|
-
export interface SqlUnaryExpression$instance extends SqlUnaryExpression$protected, SqlExpression$instance {
|
|
1185
1136
|
readonly Operand: SqlExpression;
|
|
1186
1137
|
readonly OperatorType: ExpressionType;
|
|
1187
1138
|
Equals(obj: unknown): boolean;
|
|
1188
1139
|
GetHashCode(): int;
|
|
1140
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1189
1141
|
Quote(): Expression;
|
|
1190
1142
|
Update(operand: SqlExpression): SqlUnaryExpression;
|
|
1143
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1191
1144
|
}
|
|
1192
1145
|
|
|
1193
1146
|
|
|
@@ -1204,21 +1157,19 @@ export interface __SqlUnaryExpression$views {
|
|
|
1204
1157
|
export type SqlUnaryExpression = SqlUnaryExpression$instance & __SqlUnaryExpression$views;
|
|
1205
1158
|
|
|
1206
1159
|
|
|
1207
|
-
export
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1160
|
+
export interface TableExpression$instance extends TableExpressionBase$instance {
|
|
1161
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1162
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1163
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_SqlExpressions_ITableBasedExpression: never;
|
|
1213
1164
|
|
|
1214
|
-
|
|
1215
|
-
readonly Alias: string;
|
|
1165
|
+
readonly Alias: string | string | undefined;
|
|
1216
1166
|
readonly Name: string;
|
|
1217
1167
|
readonly Schema: string | undefined;
|
|
1218
1168
|
readonly Table: ITableBase;
|
|
1219
1169
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
1220
1170
|
Equals(obj: unknown): boolean;
|
|
1221
1171
|
GetHashCode(): int;
|
|
1172
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1222
1173
|
Quote(): Expression;
|
|
1223
1174
|
}
|
|
1224
1175
|
|
|
@@ -1240,17 +1191,12 @@ export interface TableExpression$instance extends ITableBasedExpression$instance
|
|
|
1240
1191
|
export type TableExpression = TableExpression$instance & __TableExpression$views;
|
|
1241
1192
|
|
|
1242
1193
|
|
|
1243
|
-
export
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
protected PrintAnnotations(expressionPrinter: ExpressionPrinter): void;
|
|
1247
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1248
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1194
|
+
export interface TableExpressionBase$instance extends Expression {
|
|
1195
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1196
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1251
1197
|
|
|
1252
|
-
|
|
1253
|
-
readonly
|
|
1198
|
+
readonly Alias: string | string | undefined;
|
|
1199
|
+
readonly Annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation> | undefined;
|
|
1254
1200
|
readonly NodeType: ExpressionType;
|
|
1255
1201
|
readonly Type: Type;
|
|
1256
1202
|
AddAnnotation(name: string, value: unknown): TableExpressionBase;
|
|
@@ -1260,14 +1206,16 @@ export interface TableExpressionBase$instance extends TableExpressionBase$protec
|
|
|
1260
1206
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
1261
1207
|
GetHashCode(): int;
|
|
1262
1208
|
GetRequiredAlias(): string;
|
|
1209
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1210
|
+
PrintAnnotations(expressionPrinter: ExpressionPrinter): void;
|
|
1263
1211
|
Quote(): Expression;
|
|
1212
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1264
1213
|
WithAlias(newAlias: string): TableExpressionBase;
|
|
1214
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
1265
1215
|
}
|
|
1266
1216
|
|
|
1267
1217
|
|
|
1268
|
-
export const TableExpressionBase: {
|
|
1269
|
-
new(alias: string, annotations: IEnumerable<IAnnotation>): TableExpressionBase;
|
|
1270
|
-
new(alias: string, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
1218
|
+
export const TableExpressionBase: (abstract new(alias: string, annotations: IEnumerable<IAnnotation>) => TableExpressionBase) & (abstract new(alias: string, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>) => TableExpressionBase) & {
|
|
1271
1219
|
};
|
|
1272
1220
|
|
|
1273
1221
|
|
|
@@ -1281,16 +1229,12 @@ export interface TableExpressionBase$instance extends Microsoft_EntityFrameworkC
|
|
|
1281
1229
|
export type TableExpressionBase = TableExpressionBase$instance & __TableExpressionBase$views;
|
|
1282
1230
|
|
|
1283
1231
|
|
|
1284
|
-
export
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1232
|
+
export interface TableValuedFunctionExpression$instance extends TableExpressionBase$instance {
|
|
1233
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1234
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1235
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_SqlExpressions_ITableBasedExpression: never;
|
|
1291
1236
|
|
|
1292
|
-
|
|
1293
|
-
readonly Alias: string;
|
|
1237
|
+
readonly Alias: string | string | undefined;
|
|
1294
1238
|
readonly Arguments: IReadOnlyList<SqlExpression>;
|
|
1295
1239
|
readonly IsBuiltIn: boolean;
|
|
1296
1240
|
readonly Name: string;
|
|
@@ -1299,15 +1243,16 @@ export interface TableValuedFunctionExpression$instance extends TableValuedFunct
|
|
|
1299
1243
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
1300
1244
|
Equals(obj: unknown): boolean;
|
|
1301
1245
|
GetHashCode(): int;
|
|
1246
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1302
1247
|
Quote(): Expression;
|
|
1303
1248
|
Update(arguments: IReadOnlyList<SqlExpression>): TableValuedFunctionExpression;
|
|
1249
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1304
1250
|
}
|
|
1305
1251
|
|
|
1306
1252
|
|
|
1307
1253
|
export const TableValuedFunctionExpression: {
|
|
1308
1254
|
new(alias: string, storeFunction: IStoreFunction, arguments: IReadOnlyList<SqlExpression>): TableValuedFunctionExpression;
|
|
1309
1255
|
new(alias: string, name: string, arguments: IReadOnlyList<SqlExpression>): TableValuedFunctionExpression;
|
|
1310
|
-
new(alias: string, name: string, schema: string, builtIn: boolean, arguments: IReadOnlyList<SqlExpression>, annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableValuedFunctionExpression;
|
|
1311
1256
|
};
|
|
1312
1257
|
|
|
1313
1258
|
|
|
@@ -1322,20 +1267,18 @@ export interface TableValuedFunctionExpression$instance extends ITableBasedExpre
|
|
|
1322
1267
|
export type TableValuedFunctionExpression = TableValuedFunctionExpression$instance & __TableValuedFunctionExpression$views;
|
|
1323
1268
|
|
|
1324
1269
|
|
|
1325
|
-
export
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): UnionExpression;
|
|
1329
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1270
|
+
export interface UnionExpression$instance extends SetOperationBase$instance {
|
|
1271
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1272
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1332
1273
|
|
|
1333
|
-
export interface UnionExpression$instance extends UnionExpression$protected, SetOperationBase$instance {
|
|
1334
1274
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
1335
1275
|
Equals(obj: unknown): boolean;
|
|
1336
1276
|
GetHashCode(): int;
|
|
1277
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1337
1278
|
Quote(): Expression;
|
|
1279
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1338
1280
|
WithAlias(newAlias: string): UnionExpression;
|
|
1281
|
+
WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): UnionExpression;
|
|
1339
1282
|
}
|
|
1340
1283
|
|
|
1341
1284
|
|
|
@@ -1353,12 +1296,10 @@ export interface __UnionExpression$views {
|
|
|
1353
1296
|
export type UnionExpression = UnionExpression$instance & __UnionExpression$views;
|
|
1354
1297
|
|
|
1355
1298
|
|
|
1356
|
-
export
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1299
|
+
export interface UpdateExpression$instance extends Expression {
|
|
1300
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1301
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1360
1302
|
|
|
1361
|
-
export interface UpdateExpression$instance extends UpdateExpression$protected, Expression {
|
|
1362
1303
|
readonly ColumnValueSetters: IReadOnlyList<ColumnValueSetter>;
|
|
1363
1304
|
readonly NodeType: ExpressionType;
|
|
1364
1305
|
readonly SelectExpression: SelectExpression;
|
|
@@ -1371,6 +1312,7 @@ export interface UpdateExpression$instance extends UpdateExpression$protected, E
|
|
|
1371
1312
|
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1372
1313
|
Quote(): Expression;
|
|
1373
1314
|
Update(selectExpression: SelectExpression, columnValueSetters: IReadOnlyList<ColumnValueSetter>): UpdateExpression;
|
|
1315
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1374
1316
|
}
|
|
1375
1317
|
|
|
1376
1318
|
|
|
@@ -1390,26 +1332,23 @@ export interface UpdateExpression$instance extends Microsoft_EntityFrameworkCore
|
|
|
1390
1332
|
export type UpdateExpression = UpdateExpression$instance & __UpdateExpression$views;
|
|
1391
1333
|
|
|
1392
1334
|
|
|
1393
|
-
export
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): ValuesExpression;
|
|
1397
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
1398
|
-
}
|
|
1399
|
-
|
|
1335
|
+
export interface ValuesExpression$instance extends TableExpressionBase$instance {
|
|
1336
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1337
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1400
1338
|
|
|
1401
|
-
|
|
1402
|
-
readonly Alias: string;
|
|
1339
|
+
readonly Alias: string | string | undefined;
|
|
1403
1340
|
readonly ColumnNames: IReadOnlyList<System_Internal.String>;
|
|
1404
1341
|
readonly RowValues: IReadOnlyList<RowValueExpression> | undefined;
|
|
1405
1342
|
readonly ValuesParameter: SqlParameterExpression | undefined;
|
|
1406
1343
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
1407
1344
|
Equals(obj: unknown): boolean;
|
|
1408
1345
|
GetHashCode(): int;
|
|
1346
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1409
1347
|
Quote(): Expression;
|
|
1410
1348
|
Update(rowValues: IReadOnlyList<RowValueExpression>): ValuesExpression;
|
|
1411
1349
|
Update(valuesParameter: SqlParameterExpression): ValuesExpression;
|
|
1412
1350
|
Update(rowValues: IReadOnlyList<RowValueExpression>, valuesParameter: SqlParameterExpression): ValuesExpression;
|
|
1351
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1413
1352
|
}
|
|
1414
1353
|
|
|
1415
1354
|
|