@tsonic/efcore-npgsql 10.0.1 → 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/bindings.json +737 -0
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +20 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +5 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Npgsql/bindings.json +3099 -41
- package/Npgsql/internal/index.d.ts +231 -75
- package/Npgsql.BackendMessages/bindings.json +7 -0
- package/Npgsql.BackendMessages/internal/index.d.ts +0 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL/bindings.json +39 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL/internal/index.d.ts +4 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/bindings.json +179 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/internal/index.d.ts +11 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Diagnostics.Internal/bindings.json +22 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal/bindings.json +8 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/bindings.json +59 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.d.ts +7 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/bindings.json +275 -16
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/internal/index.d.ts +37 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal.d.ts +1 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/bindings.json +120 -31
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/internal/index.d.ts +9 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/bindings.json +150 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +8 -11
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/bindings.json +480 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/internal/index.d.ts +49 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions.d.ts +4 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/bindings.json +85 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +4 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/bindings.json +763 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/internal/index.d.ts +44 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/bindings.json +94 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/internal/index.d.ts +9 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/bindings.json +42 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/internal/index.d.ts +10 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.d.ts +5 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/bindings.json +31 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/internal/index.d.ts +2 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/bindings.json +410 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/internal/index.d.ts +69 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions/bindings.json +53 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/bindings.json +1093 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts +91 -3
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/bindings.json +2356 -296
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/internal/index.d.ts +112 -5
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal.d.ts +6 -5
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/bindings.json +25 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/internal/index.d.ts +4 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/bindings.json +508 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/internal/index.d.ts +55 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/bindings.json +23 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/internal/index.d.ts +0 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/bindings.json +4017 -129
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/internal/index.d.ts +210 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.d.ts +5 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.ValueConversion/bindings.json +16 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/bindings.json +257 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/internal/index.d.ts +24 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal.d.ts +5 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration/bindings.json +20 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/bindings.json +137 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/internal/index.d.ts +21 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal.d.ts +3 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.d.ts +1 -1
- package/Npgsql.Internal/bindings.json +884 -15
- package/Npgsql.Internal/internal/index.d.ts +41 -18
- package/Npgsql.Internal.Postgres/bindings.json +81 -0
- package/Npgsql.Internal.Postgres/internal/index.d.ts +6 -0
- package/Npgsql.Internal.d.ts +1 -1
- package/Npgsql.NameTranslation/bindings.json +30 -0
- package/Npgsql.NameTranslation/internal/index.d.ts +4 -0
- package/Npgsql.PostgresTypes/bindings.json +144 -12
- package/Npgsql.PostgresTypes/internal/index.d.ts +12 -18
- package/Npgsql.Replication/bindings.json +166 -11
- package/Npgsql.Replication/internal/index.d.ts +12 -7
- package/Npgsql.Replication.Internal/bindings.json +26 -1
- package/Npgsql.Replication.Internal/internal/index.d.ts +1 -1
- package/Npgsql.Replication.PgOutput/bindings.json +160 -6
- package/Npgsql.Replication.PgOutput/internal/index.d.ts +7 -5
- package/Npgsql.Replication.PgOutput.Messages/bindings.json +513 -83
- package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +43 -66
- package/Npgsql.Replication.TestDecoding/bindings.json +40 -2
- package/Npgsql.Replication.TestDecoding/internal/index.d.ts +3 -1
- package/Npgsql.Schema/bindings.json +87 -54
- package/Npgsql.Schema/internal/index.d.ts +34 -28
- package/Npgsql.TypeMapping/bindings.json +17 -0
- package/Npgsql.TypeMapping/internal/index.d.ts +2 -0
- package/Npgsql.Util/bindings.json +4 -0
- package/Npgsql.d.ts +1 -1
- package/NpgsqlTypes/bindings.json +871 -4
- package/NpgsqlTypes/internal/index.d.ts +67 -7
- package/__internal/extensions/index.d.ts +752 -12
- package/package.json +1 -1
package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts
CHANGED
|
@@ -36,9 +36,11 @@ export enum PgAnyOperatorType {
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
export interface PgTableValuedFunctionExpression_ColumnInfo$instance {
|
|
39
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
40
|
+
|
|
39
41
|
Name: string;
|
|
40
42
|
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
41
|
-
set TypeMapping(value: RelationalTypeMapping);
|
|
43
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
42
44
|
Deconstruct(Name: string, TypeMapping: RelationalTypeMapping): void;
|
|
43
45
|
Equals(obj: unknown): boolean;
|
|
44
46
|
Equals(other: PgTableValuedFunctionExpression_ColumnInfo): boolean;
|
|
@@ -55,6 +57,10 @@ export const PgTableValuedFunctionExpression_ColumnInfo: {
|
|
|
55
57
|
export type PgTableValuedFunctionExpression_ColumnInfo = PgTableValuedFunctionExpression_ColumnInfo$instance;
|
|
56
58
|
|
|
57
59
|
export interface PgAllExpression$instance extends SqlExpression {
|
|
60
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
61
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
62
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
63
|
+
|
|
58
64
|
readonly Array: SqlExpression;
|
|
59
65
|
readonly Item: SqlExpression;
|
|
60
66
|
readonly OperatorType: PgAllOperatorType;
|
|
@@ -62,9 +68,11 @@ export interface PgAllExpression$instance extends SqlExpression {
|
|
|
62
68
|
Equals(obj: unknown): boolean;
|
|
63
69
|
Equals(other: PgAllExpression): boolean;
|
|
64
70
|
GetHashCode(): int;
|
|
71
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
65
72
|
Quote(): Expression;
|
|
66
73
|
ToString(): string;
|
|
67
74
|
Update(item: SqlExpression, array: SqlExpression): PgAllExpression;
|
|
75
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
68
76
|
}
|
|
69
77
|
|
|
70
78
|
|
|
@@ -76,6 +84,10 @@ export const PgAllExpression: {
|
|
|
76
84
|
export type PgAllExpression = PgAllExpression$instance;
|
|
77
85
|
|
|
78
86
|
export interface PgAnyExpression$instance extends SqlExpression {
|
|
87
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
88
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
89
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
90
|
+
|
|
79
91
|
readonly Array: SqlExpression;
|
|
80
92
|
readonly Item: SqlExpression;
|
|
81
93
|
readonly OperatorType: PgAnyOperatorType;
|
|
@@ -83,9 +95,11 @@ export interface PgAnyExpression$instance extends SqlExpression {
|
|
|
83
95
|
Equals(obj: unknown): boolean;
|
|
84
96
|
Equals(other: PgAnyExpression): boolean;
|
|
85
97
|
GetHashCode(): int;
|
|
98
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
86
99
|
Quote(): Expression;
|
|
87
100
|
ToString(): string;
|
|
88
101
|
Update(item: SqlExpression, array: SqlExpression): PgAnyExpression;
|
|
102
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
89
103
|
}
|
|
90
104
|
|
|
91
105
|
|
|
@@ -97,15 +111,21 @@ export const PgAnyExpression: {
|
|
|
97
111
|
export type PgAnyExpression = PgAnyExpression$instance;
|
|
98
112
|
|
|
99
113
|
export interface PgArrayIndexExpression$instance extends SqlExpression {
|
|
114
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
115
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
116
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
117
|
+
|
|
100
118
|
readonly Array: SqlExpression;
|
|
101
119
|
readonly Index: SqlExpression;
|
|
102
120
|
readonly IsNullable: boolean;
|
|
103
121
|
Equals(other: PgArrayIndexExpression): boolean;
|
|
104
122
|
Equals(obj: unknown): boolean;
|
|
105
123
|
GetHashCode(): int;
|
|
124
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
106
125
|
Quote(): Expression;
|
|
107
126
|
ToString(): string;
|
|
108
127
|
Update(array: SqlExpression, index: SqlExpression): PgArrayIndexExpression;
|
|
128
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
109
129
|
}
|
|
110
130
|
|
|
111
131
|
|
|
@@ -117,16 +137,22 @@ export const PgArrayIndexExpression: {
|
|
|
117
137
|
export type PgArrayIndexExpression = PgArrayIndexExpression$instance;
|
|
118
138
|
|
|
119
139
|
export interface PgArraySliceExpression$instance extends SqlExpression {
|
|
140
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
141
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
142
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
143
|
+
|
|
120
144
|
readonly Array: SqlExpression;
|
|
121
145
|
readonly IsNullable: boolean;
|
|
122
|
-
readonly LowerBound: SqlExpression;
|
|
123
|
-
readonly UpperBound: SqlExpression;
|
|
146
|
+
readonly LowerBound: SqlExpression | undefined;
|
|
147
|
+
readonly UpperBound: SqlExpression | undefined;
|
|
124
148
|
Equals(other: PgArraySliceExpression): boolean;
|
|
125
149
|
Equals(obj: unknown): boolean;
|
|
126
150
|
GetHashCode(): int;
|
|
151
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
127
152
|
Quote(): Expression;
|
|
128
153
|
ToString(): string;
|
|
129
154
|
Update(array: SqlExpression, lowerBound: SqlExpression, upperBound: SqlExpression): PgArraySliceExpression;
|
|
155
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
130
156
|
}
|
|
131
157
|
|
|
132
158
|
|
|
@@ -138,13 +164,18 @@ export const PgArraySliceExpression: {
|
|
|
138
164
|
export type PgArraySliceExpression = PgArraySliceExpression$instance;
|
|
139
165
|
|
|
140
166
|
export interface PgBinaryExpression$instance extends SqlExpression {
|
|
167
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
168
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
169
|
+
|
|
141
170
|
readonly Left: SqlExpression;
|
|
142
171
|
readonly OperatorType: PgExpressionType;
|
|
143
172
|
readonly Right: SqlExpression;
|
|
144
173
|
Equals(obj: unknown): boolean;
|
|
145
174
|
GetHashCode(): int;
|
|
175
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
146
176
|
Quote(): Expression;
|
|
147
177
|
Update(left: SqlExpression, right: SqlExpression): PgBinaryExpression;
|
|
178
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
148
179
|
}
|
|
149
180
|
|
|
150
181
|
|
|
@@ -156,6 +187,8 @@ export const PgBinaryExpression: {
|
|
|
156
187
|
export type PgBinaryExpression = PgBinaryExpression$instance;
|
|
157
188
|
|
|
158
189
|
export interface PgDeleteExpression$instance extends Expression {
|
|
190
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
191
|
+
|
|
159
192
|
readonly FromItems: IReadOnlyList<TableExpressionBase>;
|
|
160
193
|
readonly NodeType: ExpressionType;
|
|
161
194
|
readonly Predicate: SqlExpression | undefined;
|
|
@@ -166,6 +199,7 @@ export interface PgDeleteExpression$instance extends Expression {
|
|
|
166
199
|
GetHashCode(): int;
|
|
167
200
|
Print(expressionPrinter: ExpressionPrinter): void;
|
|
168
201
|
Update(predicate: SqlExpression): PgDeleteExpression;
|
|
202
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
169
203
|
}
|
|
170
204
|
|
|
171
205
|
|
|
@@ -177,6 +211,10 @@ export const PgDeleteExpression: {
|
|
|
177
211
|
export type PgDeleteExpression = PgDeleteExpression$instance;
|
|
178
212
|
|
|
179
213
|
export interface PgFunctionExpression$instance extends SqlFunctionExpression {
|
|
214
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
215
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
216
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
217
|
+
|
|
180
218
|
readonly AggregateOrderings: IReadOnlyList<OrderingExpression>;
|
|
181
219
|
readonly AggregatePredicate: SqlExpression | undefined;
|
|
182
220
|
readonly ArgumentNames: IReadOnlyList<string | undefined>;
|
|
@@ -188,8 +226,10 @@ export interface PgFunctionExpression$instance extends SqlFunctionExpression {
|
|
|
188
226
|
Equals(obj: unknown): boolean;
|
|
189
227
|
Equals(other: PgFunctionExpression): boolean;
|
|
190
228
|
GetHashCode(): int;
|
|
229
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
191
230
|
Update(instance: SqlExpression, arguments: IReadOnlyList<SqlExpression>): SqlFunctionExpression;
|
|
192
231
|
UpdateAggregateComponents(predicate: SqlExpression, orderings: IReadOnlyList<OrderingExpression>): PgFunctionExpression;
|
|
232
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
193
233
|
}
|
|
194
234
|
|
|
195
235
|
|
|
@@ -203,15 +243,21 @@ export const PgFunctionExpression: {
|
|
|
203
243
|
export type PgFunctionExpression = PgFunctionExpression$instance;
|
|
204
244
|
|
|
205
245
|
export interface PgILikeExpression$instance extends SqlExpression {
|
|
246
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
247
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
248
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
249
|
+
|
|
206
250
|
readonly EscapeChar: SqlExpression | undefined;
|
|
207
251
|
readonly Match: SqlExpression;
|
|
208
252
|
readonly Pattern: SqlExpression;
|
|
209
253
|
Equals(obj: unknown): boolean;
|
|
210
254
|
Equals(other: PgILikeExpression): boolean;
|
|
211
255
|
GetHashCode(): int;
|
|
256
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
212
257
|
Quote(): Expression;
|
|
213
258
|
ToString(): string;
|
|
214
259
|
Update(match: SqlExpression, pattern: SqlExpression, escapeChar: SqlExpression): PgILikeExpression;
|
|
260
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
215
261
|
}
|
|
216
262
|
|
|
217
263
|
|
|
@@ -223,6 +269,10 @@ export const PgILikeExpression: {
|
|
|
223
269
|
export type PgILikeExpression = PgILikeExpression$instance;
|
|
224
270
|
|
|
225
271
|
export interface PgJsonTraversalExpression$instance extends SqlExpression {
|
|
272
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
273
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
274
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
275
|
+
|
|
226
276
|
readonly Expression: SqlExpression;
|
|
227
277
|
readonly Path: IReadOnlyList<SqlExpression>;
|
|
228
278
|
readonly ReturnsText: boolean;
|
|
@@ -230,9 +280,11 @@ export interface PgJsonTraversalExpression$instance extends SqlExpression {
|
|
|
230
280
|
Equals(obj: unknown): boolean;
|
|
231
281
|
Equals(other: PgJsonTraversalExpression): boolean;
|
|
232
282
|
GetHashCode(): int;
|
|
283
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
233
284
|
Quote(): Expression;
|
|
234
285
|
ToString(): string;
|
|
235
286
|
Update(expression: SqlExpression, path: IReadOnlyList<SqlExpression>): PgJsonTraversalExpression;
|
|
287
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
236
288
|
}
|
|
237
289
|
|
|
238
290
|
|
|
@@ -244,11 +296,16 @@ export const PgJsonTraversalExpression: {
|
|
|
244
296
|
export type PgJsonTraversalExpression = PgJsonTraversalExpression$instance;
|
|
245
297
|
|
|
246
298
|
export interface PgNewArrayExpression$instance extends SqlExpression {
|
|
299
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
300
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
301
|
+
|
|
247
302
|
readonly Expressions: IReadOnlyList<SqlExpression>;
|
|
248
303
|
Equals(obj: unknown): boolean;
|
|
249
304
|
GetHashCode(): int;
|
|
305
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
250
306
|
Quote(): Expression;
|
|
251
307
|
Update(expressions: IReadOnlyList<SqlExpression>): PgNewArrayExpression;
|
|
308
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
252
309
|
}
|
|
253
310
|
|
|
254
311
|
|
|
@@ -260,6 +317,10 @@ export const PgNewArrayExpression: {
|
|
|
260
317
|
export type PgNewArrayExpression = PgNewArrayExpression$instance;
|
|
261
318
|
|
|
262
319
|
export interface PgRegexMatchExpression$instance extends SqlExpression {
|
|
320
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
321
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
322
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
323
|
+
|
|
263
324
|
readonly Match: SqlExpression;
|
|
264
325
|
readonly Options: RegexOptions;
|
|
265
326
|
readonly Pattern: SqlExpression;
|
|
@@ -267,9 +328,11 @@ export interface PgRegexMatchExpression$instance extends SqlExpression {
|
|
|
267
328
|
Equals(other: PgRegexMatchExpression): boolean;
|
|
268
329
|
Equals(other: unknown): boolean;
|
|
269
330
|
GetHashCode(): int;
|
|
331
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
270
332
|
Quote(): Expression;
|
|
271
333
|
ToString(): string;
|
|
272
334
|
Update(match: SqlExpression, pattern: SqlExpression): PgRegexMatchExpression;
|
|
335
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
273
336
|
}
|
|
274
337
|
|
|
275
338
|
|
|
@@ -281,12 +344,18 @@ export const PgRegexMatchExpression: {
|
|
|
281
344
|
export type PgRegexMatchExpression = PgRegexMatchExpression$instance;
|
|
282
345
|
|
|
283
346
|
export interface PgRowValueExpression$instance extends SqlExpression {
|
|
347
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
348
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
349
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
350
|
+
|
|
284
351
|
readonly Values: IReadOnlyList<SqlExpression>;
|
|
285
352
|
Equals(obj: unknown): boolean;
|
|
286
353
|
Equals(other: PgRowValueExpression): boolean;
|
|
287
354
|
GetHashCode(): int;
|
|
355
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
288
356
|
Quote(): Expression;
|
|
289
357
|
Update(values: IReadOnlyList<SqlExpression>): PgRowValueExpression;
|
|
358
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
290
359
|
}
|
|
291
360
|
|
|
292
361
|
|
|
@@ -298,13 +367,20 @@ export const PgRowValueExpression: {
|
|
|
298
367
|
export type PgRowValueExpression = PgRowValueExpression$instance;
|
|
299
368
|
|
|
300
369
|
export interface PgTableValuedFunctionExpression$instance extends TableValuedFunctionExpression {
|
|
370
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
371
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
372
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_SqlExpressions_ITableBasedExpression: never;
|
|
373
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
374
|
+
|
|
301
375
|
readonly ColumnInfos: IReadOnlyList<PgTableValuedFunctionExpression_ColumnInfo> | undefined;
|
|
302
376
|
readonly WithOrdinality: boolean;
|
|
303
377
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
304
378
|
Equals(obj: unknown): boolean;
|
|
305
379
|
Equals(expression: PgTableValuedFunctionExpression): boolean;
|
|
306
380
|
GetHashCode(): int;
|
|
381
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
307
382
|
Update(arguments: IReadOnlyList<SqlExpression>): PgTableValuedFunctionExpression;
|
|
383
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
308
384
|
WithAlias(newAlias: string): PgTableValuedFunctionExpression;
|
|
309
385
|
WithColumnInfos(columnInfos: IReadOnlyList<PgTableValuedFunctionExpression_ColumnInfo>): PgTableValuedFunctionExpression;
|
|
310
386
|
}
|
|
@@ -318,15 +394,21 @@ export const PgTableValuedFunctionExpression: {
|
|
|
318
394
|
export type PgTableValuedFunctionExpression = PgTableValuedFunctionExpression$instance;
|
|
319
395
|
|
|
320
396
|
export interface PgUnknownBinaryExpression$instance extends SqlExpression {
|
|
397
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
398
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
399
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
400
|
+
|
|
321
401
|
readonly Left: SqlExpression;
|
|
322
402
|
readonly Operator: string;
|
|
323
403
|
readonly Right: SqlExpression;
|
|
324
404
|
Equals(other: PgUnknownBinaryExpression): boolean;
|
|
325
405
|
Equals(obj: unknown): boolean;
|
|
326
406
|
GetHashCode(): int;
|
|
407
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
327
408
|
Quote(): Expression;
|
|
328
409
|
ToString(): string;
|
|
329
410
|
Update(left: SqlExpression, right: SqlExpression): PgUnknownBinaryExpression;
|
|
411
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
330
412
|
}
|
|
331
413
|
|
|
332
414
|
|
|
@@ -338,12 +420,18 @@ export const PgUnknownBinaryExpression: {
|
|
|
338
420
|
export type PgUnknownBinaryExpression = PgUnknownBinaryExpression$instance;
|
|
339
421
|
|
|
340
422
|
export interface PgUnnestExpression$instance extends PgTableValuedFunctionExpression {
|
|
423
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
424
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
425
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_SqlExpressions_ITableBasedExpression: never;
|
|
426
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
427
|
+
|
|
341
428
|
readonly Array: SqlExpression;
|
|
342
429
|
readonly ColumnName: string;
|
|
343
430
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
344
431
|
Update(arguments: IReadOnlyList<SqlExpression>): PgUnnestExpression;
|
|
345
432
|
Update(array: SqlExpression): PgUnnestExpression;
|
|
346
433
|
Update(arguments: IReadOnlyList<SqlExpression>): PgTableValuedFunctionExpression;
|
|
434
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
347
435
|
WithAlias(newAlias: string): PgUnnestExpression;
|
|
348
436
|
WithAlias(newAlias: string): PgTableValuedFunctionExpression;
|
|
349
437
|
WithColumnInfos(columnInfos: IReadOnlyList<PgTableValuedFunctionExpression_ColumnInfo>): PgUnnestExpression;
|