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