@tsonic/efcore-npgsql 10.0.2 → 10.0.7
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 +284 -280
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Npgsql/internal/index.d.ts +402 -290
- package/Npgsql.BackendMessages/internal/index.d.ts +4 -3
- package/Npgsql.EntityFrameworkCore.PostgreSQL/internal/index.d.ts +13 -13
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/internal/index.d.ts +33 -31
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Diagnostics.Internal/internal/index.d.ts +4 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal/internal/index.d.ts +4 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.d.ts +20 -16
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/internal/index.d.ts +51 -39
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/internal/index.d.ts +38 -33
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +32 -25
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/internal/index.d.ts +73 -54
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +21 -13
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/internal/index.d.ts +47 -47
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/internal/index.d.ts +29 -25
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/internal/index.d.ts +21 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/internal/index.d.ts +16 -12
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/internal/index.d.ts +179 -46
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions/internal/index.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts +149 -117
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/internal/index.d.ts +155 -148
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/internal/index.d.ts +17 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/internal/index.d.ts +79 -51
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/internal/index.d.ts +16 -13
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/internal/index.d.ts +342 -465
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.ValueConversion/internal/index.d.ts +6 -3
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/internal/index.d.ts +40 -32
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration/internal/index.d.ts +11 -7
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/internal/index.d.ts +39 -26
- package/Npgsql.Internal/internal/index.d.ts +141 -104
- package/Npgsql.Internal.Postgres/internal/index.d.ts +16 -2
- package/Npgsql.NameTranslation/internal/index.d.ts +13 -9
- package/Npgsql.PostgresTypes/internal/index.d.ts +34 -23
- package/Npgsql.Replication/internal/index.d.ts +49 -25
- package/Npgsql.Replication.Internal/internal/index.d.ts +10 -9
- package/Npgsql.Replication.PgOutput/internal/index.d.ts +31 -22
- package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +74 -36
- package/Npgsql.Replication.TestDecoding/internal/index.d.ts +18 -10
- package/Npgsql.Schema/internal/index.d.ts +26 -24
- package/Npgsql.TypeMapping/internal/index.d.ts +7 -3
- package/Npgsql.Util/internal/index.d.ts +4 -2
- package/NpgsqlTypes/internal/index.d.ts +145 -33
- package/__internal/extensions/index.d.ts +867 -89
- package/package.json +5 -5
package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts
CHANGED
|
@@ -10,17 +10,17 @@ import type { ptr } from "@tsonic/core/types.js";
|
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
12
|
import type { PgExpressionType } from "../../Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions/internal/index.js";
|
|
13
|
-
import type {
|
|
14
|
-
import * as
|
|
15
|
-
import type {
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import type {
|
|
19
|
-
import * as
|
|
20
|
-
import type {
|
|
21
|
-
import * as
|
|
22
|
-
import type {
|
|
23
|
-
import type { RelationalTypeMapping } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js";
|
|
13
|
+
import type { IEnumerable_1, IReadOnlyList_1, ISet_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import * as System_Linq_Expressions_Internal from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
15
|
+
import type { Expression, ExpressionType, ExpressionVisitor } from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
16
|
+
import type { RegexOptions } from "@tsonic/dotnet/System.Text.RegularExpressions/internal/index.js";
|
|
17
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
18
|
+
import type { Boolean as ClrBoolean, Enum, IComparable, IConvertible, IEquatable_1, IFormattable, Int32, ISpanFormattable, Object as ClrObject, String as ClrString, Type, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
19
|
+
import * as Microsoft_EntityFrameworkCore_Query_SqlExpressions_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.js";
|
|
20
|
+
import type { ITableBasedExpression, OrderingExpression, SqlExpression, SqlFunctionExpression, TableExpression, TableExpressionBase, TableValuedFunctionExpression } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.js";
|
|
21
|
+
import * as Microsoft_EntityFrameworkCore_Query_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Query/internal/index.js";
|
|
22
|
+
import type { ExpressionPrinter, IPrintableExpression, IRelationalQuotableExpression } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Query/internal/index.js";
|
|
23
|
+
import type { RelationalTypeMapping } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage/internal/index.js";
|
|
24
24
|
|
|
25
25
|
export enum PgAllOperatorType {
|
|
26
26
|
Like = 0,
|
|
@@ -36,9 +36,13 @@ export enum PgAnyOperatorType {
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
export interface PgTableValuedFunctionExpression_ColumnInfo$instance {
|
|
39
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgTableValuedFunctionExpression_ColumnInfo: never;
|
|
40
|
+
|
|
41
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
42
|
+
|
|
39
43
|
Name: string;
|
|
40
44
|
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
41
|
-
set TypeMapping(value: RelationalTypeMapping);
|
|
45
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
42
46
|
Deconstruct(Name: string, TypeMapping: RelationalTypeMapping): void;
|
|
43
47
|
Equals(obj: unknown): boolean;
|
|
44
48
|
Equals(other: PgTableValuedFunctionExpression_ColumnInfo): boolean;
|
|
@@ -54,13 +58,13 @@ export const PgTableValuedFunctionExpression_ColumnInfo: {
|
|
|
54
58
|
|
|
55
59
|
export type PgTableValuedFunctionExpression_ColumnInfo = PgTableValuedFunctionExpression_ColumnInfo$instance;
|
|
56
60
|
|
|
57
|
-
export
|
|
58
|
-
|
|
59
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
60
|
-
}
|
|
61
|
+
export interface PgAllExpression$instance extends SqlExpression {
|
|
62
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgAllExpression: never;
|
|
61
63
|
|
|
64
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
65
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
66
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
62
67
|
|
|
63
|
-
export interface PgAllExpression$instance extends PgAllExpression$protected, SqlExpression {
|
|
64
68
|
readonly Array: SqlExpression;
|
|
65
69
|
readonly Item: SqlExpression;
|
|
66
70
|
readonly OperatorType: PgAllOperatorType;
|
|
@@ -68,9 +72,11 @@ export interface PgAllExpression$instance extends PgAllExpression$protected, Sql
|
|
|
68
72
|
Equals(obj: unknown): boolean;
|
|
69
73
|
Equals(other: PgAllExpression): boolean;
|
|
70
74
|
GetHashCode(): int;
|
|
75
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
71
76
|
Quote(): Expression;
|
|
72
77
|
ToString(): string;
|
|
73
78
|
Update(item: SqlExpression, array: SqlExpression): PgAllExpression;
|
|
79
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
74
80
|
}
|
|
75
81
|
|
|
76
82
|
|
|
@@ -81,13 +87,13 @@ export const PgAllExpression: {
|
|
|
81
87
|
|
|
82
88
|
export type PgAllExpression = PgAllExpression$instance;
|
|
83
89
|
|
|
84
|
-
export
|
|
85
|
-
|
|
86
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
87
|
-
}
|
|
90
|
+
export interface PgAnyExpression$instance extends SqlExpression {
|
|
91
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgAnyExpression: never;
|
|
88
92
|
|
|
93
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
94
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
95
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
89
96
|
|
|
90
|
-
export interface PgAnyExpression$instance extends PgAnyExpression$protected, SqlExpression {
|
|
91
97
|
readonly Array: SqlExpression;
|
|
92
98
|
readonly Item: SqlExpression;
|
|
93
99
|
readonly OperatorType: PgAnyOperatorType;
|
|
@@ -95,9 +101,11 @@ export interface PgAnyExpression$instance extends PgAnyExpression$protected, Sql
|
|
|
95
101
|
Equals(obj: unknown): boolean;
|
|
96
102
|
Equals(other: PgAnyExpression): boolean;
|
|
97
103
|
GetHashCode(): int;
|
|
104
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
98
105
|
Quote(): Expression;
|
|
99
106
|
ToString(): string;
|
|
100
107
|
Update(item: SqlExpression, array: SqlExpression): PgAnyExpression;
|
|
108
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
101
109
|
}
|
|
102
110
|
|
|
103
111
|
|
|
@@ -108,22 +116,24 @@ export const PgAnyExpression: {
|
|
|
108
116
|
|
|
109
117
|
export type PgAnyExpression = PgAnyExpression$instance;
|
|
110
118
|
|
|
111
|
-
export
|
|
112
|
-
|
|
113
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
114
|
-
}
|
|
119
|
+
export interface PgArrayIndexExpression$instance extends SqlExpression {
|
|
120
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgArrayIndexExpression: never;
|
|
115
121
|
|
|
122
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
123
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
124
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
116
125
|
|
|
117
|
-
export interface PgArrayIndexExpression$instance extends PgArrayIndexExpression$protected, SqlExpression {
|
|
118
126
|
readonly Array: SqlExpression;
|
|
119
127
|
readonly Index: SqlExpression;
|
|
120
128
|
readonly IsNullable: boolean;
|
|
121
129
|
Equals(other: PgArrayIndexExpression): boolean;
|
|
122
130
|
Equals(obj: unknown): boolean;
|
|
123
131
|
GetHashCode(): int;
|
|
132
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
124
133
|
Quote(): Expression;
|
|
125
134
|
ToString(): string;
|
|
126
135
|
Update(array: SqlExpression, index: SqlExpression): PgArrayIndexExpression;
|
|
136
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
127
137
|
}
|
|
128
138
|
|
|
129
139
|
|
|
@@ -134,23 +144,25 @@ export const PgArrayIndexExpression: {
|
|
|
134
144
|
|
|
135
145
|
export type PgArrayIndexExpression = PgArrayIndexExpression$instance;
|
|
136
146
|
|
|
137
|
-
export
|
|
138
|
-
|
|
139
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
140
|
-
}
|
|
147
|
+
export interface PgArraySliceExpression$instance extends SqlExpression {
|
|
148
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgArraySliceExpression: never;
|
|
141
149
|
|
|
150
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
151
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
152
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
142
153
|
|
|
143
|
-
export interface PgArraySliceExpression$instance extends PgArraySliceExpression$protected, SqlExpression {
|
|
144
154
|
readonly Array: SqlExpression;
|
|
145
155
|
readonly IsNullable: boolean;
|
|
146
|
-
readonly LowerBound: SqlExpression;
|
|
147
|
-
readonly UpperBound: SqlExpression;
|
|
156
|
+
readonly LowerBound: SqlExpression | undefined;
|
|
157
|
+
readonly UpperBound: SqlExpression | undefined;
|
|
148
158
|
Equals(other: PgArraySliceExpression): boolean;
|
|
149
159
|
Equals(obj: unknown): boolean;
|
|
150
160
|
GetHashCode(): int;
|
|
161
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
151
162
|
Quote(): Expression;
|
|
152
163
|
ToString(): string;
|
|
153
164
|
Update(array: SqlExpression, lowerBound: SqlExpression, upperBound: SqlExpression): PgArraySliceExpression;
|
|
165
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
154
166
|
}
|
|
155
167
|
|
|
156
168
|
|
|
@@ -161,20 +173,21 @@ export const PgArraySliceExpression: {
|
|
|
161
173
|
|
|
162
174
|
export type PgArraySliceExpression = PgArraySliceExpression$instance;
|
|
163
175
|
|
|
164
|
-
export
|
|
165
|
-
|
|
166
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
167
|
-
}
|
|
176
|
+
export interface PgBinaryExpression$instance extends SqlExpression {
|
|
177
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgBinaryExpression: never;
|
|
168
178
|
|
|
179
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
180
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
169
181
|
|
|
170
|
-
export interface PgBinaryExpression$instance extends PgBinaryExpression$protected, SqlExpression {
|
|
171
182
|
readonly Left: SqlExpression;
|
|
172
183
|
readonly OperatorType: PgExpressionType;
|
|
173
184
|
readonly Right: SqlExpression;
|
|
174
185
|
Equals(obj: unknown): boolean;
|
|
175
186
|
GetHashCode(): int;
|
|
187
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
176
188
|
Quote(): Expression;
|
|
177
189
|
Update(left: SqlExpression, right: SqlExpression): PgBinaryExpression;
|
|
190
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
178
191
|
}
|
|
179
192
|
|
|
180
193
|
|
|
@@ -185,80 +198,84 @@ export const PgBinaryExpression: {
|
|
|
185
198
|
|
|
186
199
|
export type PgBinaryExpression = PgBinaryExpression$instance;
|
|
187
200
|
|
|
188
|
-
export
|
|
189
|
-
|
|
190
|
-
}
|
|
201
|
+
export interface PgDeleteExpression$instance extends Expression {
|
|
202
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgDeleteExpression: never;
|
|
191
203
|
|
|
204
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
192
205
|
|
|
193
|
-
|
|
194
|
-
readonly FromItems: IReadOnlyList<TableExpressionBase>;
|
|
206
|
+
readonly FromItems: IReadOnlyList_1<TableExpressionBase>;
|
|
195
207
|
readonly NodeType: ExpressionType;
|
|
196
208
|
readonly Predicate: SqlExpression | undefined;
|
|
197
209
|
readonly Table: TableExpression;
|
|
198
|
-
readonly Tags:
|
|
210
|
+
readonly Tags: ISet_1<System_Internal.String>;
|
|
199
211
|
readonly Type: Type;
|
|
200
212
|
Equals(obj: unknown): boolean;
|
|
201
213
|
GetHashCode(): int;
|
|
202
214
|
Print(expressionPrinter: ExpressionPrinter): void;
|
|
203
215
|
Update(predicate: SqlExpression): PgDeleteExpression;
|
|
216
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
204
217
|
}
|
|
205
218
|
|
|
206
219
|
|
|
207
220
|
export const PgDeleteExpression: {
|
|
208
|
-
new(table: TableExpression, fromItems:
|
|
221
|
+
new(table: TableExpression, fromItems: IReadOnlyList_1<TableExpressionBase>, predicate: SqlExpression, tags: ISet_1<System_Internal.String>): PgDeleteExpression;
|
|
209
222
|
};
|
|
210
223
|
|
|
211
224
|
|
|
212
225
|
export type PgDeleteExpression = PgDeleteExpression$instance;
|
|
213
226
|
|
|
214
|
-
export
|
|
215
|
-
|
|
216
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
217
|
-
}
|
|
227
|
+
export interface PgFunctionExpression$instance extends SqlFunctionExpression {
|
|
228
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgFunctionExpression: never;
|
|
218
229
|
|
|
230
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
231
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
232
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
219
233
|
|
|
220
|
-
|
|
221
|
-
readonly AggregateOrderings: IReadOnlyList<OrderingExpression>;
|
|
234
|
+
readonly AggregateOrderings: IReadOnlyList_1<OrderingExpression>;
|
|
222
235
|
readonly AggregatePredicate: SqlExpression | undefined;
|
|
223
|
-
readonly ArgumentNames:
|
|
224
|
-
readonly Arguments:
|
|
225
|
-
readonly ArgumentSeparators:
|
|
226
|
-
readonly ArgumentsPropagateNullability:
|
|
236
|
+
readonly ArgumentNames: IReadOnlyList_1<string | undefined>;
|
|
237
|
+
readonly Arguments: IReadOnlyList_1<SqlExpression>;
|
|
238
|
+
readonly ArgumentSeparators: IReadOnlyList_1<string | undefined>;
|
|
239
|
+
readonly ArgumentsPropagateNullability: IReadOnlyList_1<System_Internal.Boolean>;
|
|
227
240
|
readonly IsAggregateDistinct: boolean;
|
|
228
241
|
ApplyTypeMapping(typeMapping: RelationalTypeMapping): SqlFunctionExpression;
|
|
229
242
|
Equals(obj: unknown): boolean;
|
|
230
243
|
Equals(other: PgFunctionExpression): boolean;
|
|
231
244
|
GetHashCode(): int;
|
|
232
|
-
|
|
233
|
-
|
|
245
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
246
|
+
Update(instance: SqlExpression, arguments: IReadOnlyList_1<SqlExpression>): SqlFunctionExpression;
|
|
247
|
+
UpdateAggregateComponents(predicate: SqlExpression, orderings: IReadOnlyList_1<OrderingExpression>): PgFunctionExpression;
|
|
248
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
234
249
|
}
|
|
235
250
|
|
|
236
251
|
|
|
237
252
|
export const PgFunctionExpression: {
|
|
238
|
-
new(name: string, arguments:
|
|
239
|
-
CreateWithArgumentSeparators(name: string, arguments:
|
|
240
|
-
CreateWithNamedArguments(name: string, arguments:
|
|
253
|
+
new(name: string, arguments: IEnumerable_1<SqlExpression>, argumentNames: IEnumerable_1<System_Internal.String>, argumentSeparators: IEnumerable_1<System_Internal.String>, aggregateDistinct: boolean, aggregatePredicate: SqlExpression, aggregateOrderings: IReadOnlyList_1<OrderingExpression>, nullable: boolean, argumentsPropagateNullability: IEnumerable_1<System_Internal.Boolean>, type: Type, typeMapping: RelationalTypeMapping): PgFunctionExpression;
|
|
254
|
+
CreateWithArgumentSeparators(name: string, arguments: IEnumerable_1<SqlExpression>, argumentSeparators: IEnumerable_1<System_Internal.String>, nullable: boolean, argumentsPropagateNullability: IEnumerable_1<System_Internal.Boolean>, builtIn: boolean, type: Type, typeMapping: RelationalTypeMapping): PgFunctionExpression;
|
|
255
|
+
CreateWithNamedArguments(name: string, arguments: IEnumerable_1<SqlExpression>, argumentNames: IEnumerable_1<System_Internal.String>, nullable: boolean, argumentsPropagateNullability: IEnumerable_1<System_Internal.Boolean>, builtIn: boolean, type: Type, typeMapping: RelationalTypeMapping): PgFunctionExpression;
|
|
241
256
|
};
|
|
242
257
|
|
|
243
258
|
|
|
244
259
|
export type PgFunctionExpression = PgFunctionExpression$instance;
|
|
245
260
|
|
|
246
|
-
export
|
|
247
|
-
|
|
248
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
249
|
-
}
|
|
261
|
+
export interface PgILikeExpression$instance extends SqlExpression {
|
|
262
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgILikeExpression: never;
|
|
250
263
|
|
|
264
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
265
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
266
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
251
267
|
|
|
252
|
-
export interface PgILikeExpression$instance extends PgILikeExpression$protected, SqlExpression {
|
|
253
268
|
readonly EscapeChar: SqlExpression | undefined;
|
|
254
269
|
readonly Match: SqlExpression;
|
|
255
270
|
readonly Pattern: SqlExpression;
|
|
256
271
|
Equals(obj: unknown): boolean;
|
|
257
272
|
Equals(other: PgILikeExpression): boolean;
|
|
258
273
|
GetHashCode(): int;
|
|
274
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
259
275
|
Quote(): Expression;
|
|
260
276
|
ToString(): string;
|
|
261
277
|
Update(match: SqlExpression, pattern: SqlExpression, escapeChar: SqlExpression): PgILikeExpression;
|
|
278
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
262
279
|
}
|
|
263
280
|
|
|
264
281
|
|
|
@@ -269,62 +286,65 @@ export const PgILikeExpression: {
|
|
|
269
286
|
|
|
270
287
|
export type PgILikeExpression = PgILikeExpression$instance;
|
|
271
288
|
|
|
272
|
-
export
|
|
273
|
-
|
|
274
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
275
|
-
}
|
|
289
|
+
export interface PgJsonTraversalExpression$instance extends SqlExpression {
|
|
290
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgJsonTraversalExpression: never;
|
|
276
291
|
|
|
292
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
293
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
294
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
277
295
|
|
|
278
|
-
export interface PgJsonTraversalExpression$instance extends PgJsonTraversalExpression$protected, SqlExpression {
|
|
279
296
|
readonly Expression: SqlExpression;
|
|
280
|
-
readonly Path:
|
|
297
|
+
readonly Path: IReadOnlyList_1<SqlExpression>;
|
|
281
298
|
readonly ReturnsText: boolean;
|
|
282
299
|
Append(pathComponent: SqlExpression): PgJsonTraversalExpression;
|
|
283
300
|
Equals(obj: unknown): boolean;
|
|
284
301
|
Equals(other: PgJsonTraversalExpression): boolean;
|
|
285
302
|
GetHashCode(): int;
|
|
303
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
286
304
|
Quote(): Expression;
|
|
287
305
|
ToString(): string;
|
|
288
|
-
Update(expression: SqlExpression, path:
|
|
306
|
+
Update(expression: SqlExpression, path: IReadOnlyList_1<SqlExpression>): PgJsonTraversalExpression;
|
|
307
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
289
308
|
}
|
|
290
309
|
|
|
291
310
|
|
|
292
311
|
export const PgJsonTraversalExpression: {
|
|
293
|
-
new(expression: SqlExpression, path:
|
|
312
|
+
new(expression: SqlExpression, path: IReadOnlyList_1<SqlExpression>, returnsText: boolean, type: Type, typeMapping: RelationalTypeMapping): PgJsonTraversalExpression;
|
|
294
313
|
};
|
|
295
314
|
|
|
296
315
|
|
|
297
316
|
export type PgJsonTraversalExpression = PgJsonTraversalExpression$instance;
|
|
298
317
|
|
|
299
|
-
export
|
|
300
|
-
|
|
301
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
302
|
-
}
|
|
318
|
+
export interface PgNewArrayExpression$instance extends SqlExpression {
|
|
319
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgNewArrayExpression: never;
|
|
303
320
|
|
|
321
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
322
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
304
323
|
|
|
305
|
-
|
|
306
|
-
readonly Expressions: IReadOnlyList<SqlExpression>;
|
|
324
|
+
readonly Expressions: IReadOnlyList_1<SqlExpression>;
|
|
307
325
|
Equals(obj: unknown): boolean;
|
|
308
326
|
GetHashCode(): int;
|
|
327
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
309
328
|
Quote(): Expression;
|
|
310
|
-
Update(expressions:
|
|
329
|
+
Update(expressions: IReadOnlyList_1<SqlExpression>): PgNewArrayExpression;
|
|
330
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
311
331
|
}
|
|
312
332
|
|
|
313
333
|
|
|
314
334
|
export const PgNewArrayExpression: {
|
|
315
|
-
new(expressions:
|
|
335
|
+
new(expressions: IReadOnlyList_1<SqlExpression>, type: Type, typeMapping: RelationalTypeMapping): PgNewArrayExpression;
|
|
316
336
|
};
|
|
317
337
|
|
|
318
338
|
|
|
319
339
|
export type PgNewArrayExpression = PgNewArrayExpression$instance;
|
|
320
340
|
|
|
321
|
-
export
|
|
322
|
-
|
|
323
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
324
|
-
}
|
|
341
|
+
export interface PgRegexMatchExpression$instance extends SqlExpression {
|
|
342
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgRegexMatchExpression: never;
|
|
325
343
|
|
|
344
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
345
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
346
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
326
347
|
|
|
327
|
-
export interface PgRegexMatchExpression$instance extends PgRegexMatchExpression$protected, SqlExpression {
|
|
328
348
|
readonly Match: SqlExpression;
|
|
329
349
|
readonly Options: RegexOptions;
|
|
330
350
|
readonly Pattern: SqlExpression;
|
|
@@ -332,9 +352,11 @@ export interface PgRegexMatchExpression$instance extends PgRegexMatchExpression$
|
|
|
332
352
|
Equals(other: PgRegexMatchExpression): boolean;
|
|
333
353
|
Equals(other: unknown): boolean;
|
|
334
354
|
GetHashCode(): int;
|
|
355
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
335
356
|
Quote(): Expression;
|
|
336
357
|
ToString(): string;
|
|
337
358
|
Update(match: SqlExpression, pattern: SqlExpression): PgRegexMatchExpression;
|
|
359
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
338
360
|
}
|
|
339
361
|
|
|
340
362
|
|
|
@@ -345,71 +367,78 @@ export const PgRegexMatchExpression: {
|
|
|
345
367
|
|
|
346
368
|
export type PgRegexMatchExpression = PgRegexMatchExpression$instance;
|
|
347
369
|
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
351
|
-
}
|
|
370
|
+
export interface PgRowValueExpression$instance extends SqlExpression {
|
|
371
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgRowValueExpression: never;
|
|
352
372
|
|
|
373
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
374
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
375
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
353
376
|
|
|
354
|
-
|
|
355
|
-
readonly Values: IReadOnlyList<SqlExpression>;
|
|
377
|
+
readonly Values: IReadOnlyList_1<SqlExpression>;
|
|
356
378
|
Equals(obj: unknown): boolean;
|
|
357
379
|
Equals(other: PgRowValueExpression): boolean;
|
|
358
380
|
GetHashCode(): int;
|
|
381
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
359
382
|
Quote(): Expression;
|
|
360
|
-
Update(values:
|
|
383
|
+
Update(values: IReadOnlyList_1<SqlExpression>): PgRowValueExpression;
|
|
384
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
361
385
|
}
|
|
362
386
|
|
|
363
387
|
|
|
364
388
|
export const PgRowValueExpression: {
|
|
365
|
-
new(values:
|
|
389
|
+
new(values: IReadOnlyList_1<SqlExpression>, type: Type, typeMapping: RelationalTypeMapping): PgRowValueExpression;
|
|
366
390
|
};
|
|
367
391
|
|
|
368
392
|
|
|
369
393
|
export type PgRowValueExpression = PgRowValueExpression$instance;
|
|
370
394
|
|
|
371
|
-
export
|
|
372
|
-
|
|
373
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
374
|
-
}
|
|
395
|
+
export interface PgTableValuedFunctionExpression$instance extends TableValuedFunctionExpression {
|
|
396
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgTableValuedFunctionExpression: never;
|
|
375
397
|
|
|
398
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
399
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
400
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_SqlExpressions_ITableBasedExpression: never;
|
|
401
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
376
402
|
|
|
377
|
-
|
|
378
|
-
readonly ColumnInfos: IReadOnlyList<PgTableValuedFunctionExpression_ColumnInfo> | undefined;
|
|
403
|
+
readonly ColumnInfos: IReadOnlyList_1<PgTableValuedFunctionExpression_ColumnInfo> | undefined;
|
|
379
404
|
readonly WithOrdinality: boolean;
|
|
380
405
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
381
406
|
Equals(obj: unknown): boolean;
|
|
382
407
|
Equals(expression: PgTableValuedFunctionExpression): boolean;
|
|
383
408
|
GetHashCode(): int;
|
|
384
|
-
|
|
409
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
410
|
+
Update(arguments: IReadOnlyList_1<SqlExpression>): PgTableValuedFunctionExpression;
|
|
411
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
385
412
|
WithAlias(newAlias: string): PgTableValuedFunctionExpression;
|
|
386
|
-
WithColumnInfos(columnInfos:
|
|
413
|
+
WithColumnInfos(columnInfos: IReadOnlyList_1<PgTableValuedFunctionExpression_ColumnInfo>): PgTableValuedFunctionExpression;
|
|
387
414
|
}
|
|
388
415
|
|
|
389
416
|
|
|
390
417
|
export const PgTableValuedFunctionExpression: {
|
|
391
|
-
new(alias: string, name: string, arguments:
|
|
418
|
+
new(alias: string, name: string, arguments: IReadOnlyList_1<SqlExpression>, columnInfos: IReadOnlyList_1<PgTableValuedFunctionExpression_ColumnInfo>, withOrdinality: boolean): PgTableValuedFunctionExpression;
|
|
392
419
|
};
|
|
393
420
|
|
|
394
421
|
|
|
395
422
|
export type PgTableValuedFunctionExpression = PgTableValuedFunctionExpression$instance;
|
|
396
423
|
|
|
397
|
-
export
|
|
398
|
-
|
|
399
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
400
|
-
}
|
|
424
|
+
export interface PgUnknownBinaryExpression$instance extends SqlExpression {
|
|
425
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgUnknownBinaryExpression: never;
|
|
401
426
|
|
|
427
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
428
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
429
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
402
430
|
|
|
403
|
-
export interface PgUnknownBinaryExpression$instance extends PgUnknownBinaryExpression$protected, SqlExpression {
|
|
404
431
|
readonly Left: SqlExpression;
|
|
405
432
|
readonly Operator: string;
|
|
406
433
|
readonly Right: SqlExpression;
|
|
407
434
|
Equals(other: PgUnknownBinaryExpression): boolean;
|
|
408
435
|
Equals(obj: unknown): boolean;
|
|
409
436
|
GetHashCode(): int;
|
|
437
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
410
438
|
Quote(): Expression;
|
|
411
439
|
ToString(): string;
|
|
412
440
|
Update(left: SqlExpression, right: SqlExpression): PgUnknownBinaryExpression;
|
|
441
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
413
442
|
}
|
|
414
443
|
|
|
415
444
|
|
|
@@ -420,22 +449,25 @@ export const PgUnknownBinaryExpression: {
|
|
|
420
449
|
|
|
421
450
|
export type PgUnknownBinaryExpression = PgUnknownBinaryExpression$instance;
|
|
422
451
|
|
|
423
|
-
export
|
|
424
|
-
|
|
425
|
-
}
|
|
452
|
+
export interface PgUnnestExpression$instance extends PgTableValuedFunctionExpression {
|
|
453
|
+
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Query_Expressions_Internal_PgUnnestExpression: never;
|
|
426
454
|
|
|
455
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
456
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
457
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_SqlExpressions_ITableBasedExpression: never;
|
|
458
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
427
459
|
|
|
428
|
-
export interface PgUnnestExpression$instance extends PgUnnestExpression$protected, PgTableValuedFunctionExpression {
|
|
429
460
|
readonly Array: SqlExpression;
|
|
430
461
|
readonly ColumnName: string;
|
|
431
462
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
432
|
-
Update(arguments:
|
|
463
|
+
Update(arguments: IReadOnlyList_1<SqlExpression>): PgUnnestExpression;
|
|
433
464
|
Update(array: SqlExpression): PgUnnestExpression;
|
|
434
|
-
Update(arguments:
|
|
465
|
+
Update(arguments: IReadOnlyList_1<SqlExpression>): PgTableValuedFunctionExpression;
|
|
466
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
435
467
|
WithAlias(newAlias: string): PgUnnestExpression;
|
|
436
468
|
WithAlias(newAlias: string): PgTableValuedFunctionExpression;
|
|
437
|
-
WithColumnInfos(columnInfos:
|
|
438
|
-
WithColumnInfos(columnInfos:
|
|
469
|
+
WithColumnInfos(columnInfos: IReadOnlyList_1<PgTableValuedFunctionExpression_ColumnInfo>): PgUnnestExpression;
|
|
470
|
+
WithColumnInfos(columnInfos: IReadOnlyList_1<PgTableValuedFunctionExpression_ColumnInfo>): PgTableValuedFunctionExpression;
|
|
439
471
|
}
|
|
440
472
|
|
|
441
473
|
|