@tsonic/efcore-npgsql 10.0.2 → 10.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +2 -0
  2. package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
  3. package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
  4. package/Npgsql/internal/index.d.ts +226 -190
  5. package/Npgsql.BackendMessages/internal/index.d.ts +0 -1
  6. package/Npgsql.EntityFrameworkCore.PostgreSQL/internal/index.d.ts +3 -5
  7. package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/internal/index.d.ts +12 -16
  8. package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal.d.ts +3 -0
  9. package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.d.ts +6 -6
  10. package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/internal/index.d.ts +25 -21
  11. package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/internal/index.d.ts +3 -0
  12. package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal.d.ts +3 -0
  13. package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +8 -11
  14. package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/internal/index.d.ts +46 -41
  15. package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +4 -0
  16. package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/internal/index.d.ts +39 -41
  17. package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/internal/index.d.ts +7 -7
  18. package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/internal/index.d.ts +10 -2
  19. package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/internal/index.d.ts +2 -0
  20. package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/internal/index.d.ts +69 -0
  21. package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts +91 -91
  22. package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/internal/index.d.ts +113 -146
  23. package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/internal/index.d.ts +4 -0
  24. package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/internal/index.d.ts +48 -34
  25. package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/internal/index.d.ts +0 -1
  26. package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/internal/index.d.ts +220 -400
  27. package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/internal/index.d.ts +20 -22
  28. package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/internal/index.d.ts +19 -12
  29. package/Npgsql.Internal/internal/index.d.ts +35 -46
  30. package/Npgsql.Internal.Postgres/internal/index.d.ts +6 -0
  31. package/Npgsql.NameTranslation/internal/index.d.ts +4 -0
  32. package/Npgsql.PostgresTypes/internal/index.d.ts +9 -18
  33. package/Npgsql.Replication/internal/index.d.ts +7 -3
  34. package/Npgsql.Replication.Internal/internal/index.d.ts +1 -2
  35. package/Npgsql.Replication.PgOutput/internal/index.d.ts +4 -3
  36. package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +3 -29
  37. package/Npgsql.Replication.TestDecoding/internal/index.d.ts +2 -0
  38. package/Npgsql.Schema/internal/index.d.ts +7 -7
  39. package/Npgsql.TypeMapping/internal/index.d.ts +2 -0
  40. package/NpgsqlTypes/internal/index.d.ts +67 -9
  41. package/__internal/extensions/index.d.ts +752 -12
  42. package/package.json +1 -1
@@ -5,6 +5,19 @@
5
5
 
6
6
  // Import namespace modules for cross-namespace type references
7
7
  import * as Microsoft_EntityFrameworkCore from "../../Microsoft.EntityFrameworkCore/internal/index.js";
8
+ import * as Microsoft_EntityFrameworkCore_Diagnostics from "../../Microsoft.EntityFrameworkCore.Diagnostics/internal/index.js";
9
+ import * as Microsoft_EntityFrameworkCore_Infrastructure from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.js";
10
+ import * as Microsoft_EntityFrameworkCore_Metadata from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
11
+ import * as Microsoft_EntityFrameworkCore_Metadata_Builders from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.js";
12
+ import * as Microsoft_EntityFrameworkCore_Migrations from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations/internal/index.js";
13
+ import * as Microsoft_EntityFrameworkCore_Migrations_Operations from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.js";
14
+ import * as Microsoft_EntityFrameworkCore_Query from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Query/internal/index.js";
15
+ import * as Microsoft_EntityFrameworkCore_Query_SqlExpressions from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.js";
16
+ import * as Microsoft_EntityFrameworkCore_Scaffolding_Metadata from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.js";
17
+ import * as Microsoft_EntityFrameworkCore_Storage_ValueConversion from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.js";
18
+ import * as Microsoft_Extensions_DependencyInjection from "../../Microsoft.Extensions.DependencyInjection/internal/index.js";
19
+ import * as Npgsql from "../../Npgsql/internal/index.js";
20
+ import * as Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure from "../../Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.js";
8
21
  import * as Npgsql_EntityFrameworkCore_PostgreSQL_Metadata from "../../Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.js";
9
22
  import * as Npgsql_Internal from "../../Npgsql.Internal/internal/index.js";
10
23
  import * as Npgsql_Replication from "../../Npgsql.Replication/internal/index.js";
@@ -13,16 +26,609 @@ import * as Npgsql_Replication_PgOutput from "../../Npgsql.Replication.PgOutput/
13
26
  import * as Npgsql_Replication_PgOutput_Messages from "../../Npgsql.Replication.PgOutput.Messages/internal/index.js";
14
27
  import * as Npgsql_Replication_TestDecoding from "../../Npgsql.Replication.TestDecoding/internal/index.js";
15
28
  import * as NpgsqlTypes from "../../NpgsqlTypes/internal/index.js";
29
+ import * as System from "@tsonic/dotnet/System/internal/index.js";
30
+ import * as System_Collections_Generic from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
31
+ import * as System_Data_Common from "@tsonic/dotnet/System.Data.Common/internal/index.js";
32
+ import * as System_Linq_Expressions from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
33
+ import * as System_Net from "@tsonic/dotnet/System.Net/internal/index.js";
34
+ import * as System_Net_NetworkInformation from "@tsonic/dotnet/System.Net.NetworkInformation/internal/index.js";
35
+ import * as System_Runtime_CompilerServices from "@tsonic/dotnet/System.Runtime.CompilerServices/internal/index.js";
36
+ import * as System_Threading from "@tsonic/dotnet/System.Threading/internal/index.js";
37
+ import * as System_Threading_Tasks from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
16
38
 
17
39
  // Import primitive type aliases
18
40
  import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
19
41
 
20
42
  // Import CLR type aliases for generic type arguments
21
- import * as System_Internal from "../../System/internal/index.js";
43
+ import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
22
44
 
23
45
  // Import unsafe type markers
24
46
  import type { ptr } from '@tsonic/core/types.js';
25
47
 
48
+ export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder {
49
+ UseNpgsql(npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
50
+ UseNpgsql(connectionString: string, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
51
+ UseNpgsql(connection: System_Data_Common.DbConnection, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
52
+ UseNpgsql(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
53
+ UseNpgsql(dataSource: System_Data_Common.DbDataSource, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
54
+ }
55
+
56
+ export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T> {
57
+ UseNpgsql(npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
58
+ UseNpgsql(connectionString: string, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
59
+ UseNpgsql(connection: System_Data_Common.DbConnection, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
60
+ UseNpgsql(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
61
+ UseNpgsql(dataSource: System_Data_Common.DbDataSource, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
62
+ }
63
+
64
+ export interface __Ext_Microsoft_EntityFrameworkCore_DbFunctions {
65
+ ArrayAgg<T>(input: System_Collections_Generic.IEnumerable_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<T[]>;
66
+ JsonAgg<T>(input: System_Collections_Generic.IEnumerable_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<T[]>;
67
+ JsonbAgg<T>(input: System_Collections_Generic.IEnumerable_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<T[]>;
68
+ Sum(input: System_Collections_Generic.IEnumerable_1<System.TimeSpan>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System.TimeSpan>>;
69
+ Average(input: System_Collections_Generic.IEnumerable_1<System.TimeSpan>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System.TimeSpan>>;
70
+ JsonObjectAgg<T1, T2>(keyValuePairs: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T1, T2>>): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
71
+ JsonObjectAgg<T1, T2, TReturn>(keyValuePairs: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T1, T2>>): ExtensionMethods_Microsoft_EntityFrameworkCore<TReturn>;
72
+ JsonbObjectAgg<T1, T2>(keyValuePairs: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T1, T2>>): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
73
+ JsonbObjectAgg<T1, T2, TReturn>(keyValuePairs: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T1, T2>>): ExtensionMethods_Microsoft_EntityFrameworkCore<TReturn>;
74
+ StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Byte>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
75
+ StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int16>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
76
+ StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
77
+ StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
78
+ StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Single>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
79
+ StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Double>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
80
+ StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Decimal>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
81
+ StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Byte>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
82
+ StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int16>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
83
+ StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
84
+ StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
85
+ StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Single>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
86
+ StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Double>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
87
+ StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Decimal>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
88
+ VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Byte>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
89
+ VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int16>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
90
+ VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
91
+ VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
92
+ VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Single>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
93
+ VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Double>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
94
+ VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Decimal>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
95
+ VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Byte>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
96
+ VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int16>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
97
+ VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
98
+ VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
99
+ VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Single>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
100
+ VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Double>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
101
+ VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Decimal>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
102
+ Correlation(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
103
+ CovariancePopulation(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
104
+ CovarianceSample(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
105
+ RegrAverageX(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
106
+ RegrAverageY(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
107
+ RegrCount(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
108
+ RegrIntercept(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
109
+ RegrR2(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
110
+ RegrSlope(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
111
+ RegrSXX(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
112
+ RegrSXY(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Double>>;
113
+ ILike(matchExpression: string, pattern: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
114
+ ILike(matchExpression: string, pattern: string, escapeCharacter: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
115
+ StringToArray(value: string, delimiter: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string[]>;
116
+ StringToArray(value: string, delimiter: string, nullString: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string[]>;
117
+ Reverse(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
118
+ GreaterThan(a: System_Runtime_CompilerServices.ITuple, b: System_Runtime_CompilerServices.ITuple): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
119
+ LessThan(a: System_Runtime_CompilerServices.ITuple, b: System_Runtime_CompilerServices.ITuple): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
120
+ GreaterThanOrEqual(a: System_Runtime_CompilerServices.ITuple, b: System_Runtime_CompilerServices.ITuple): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
121
+ LessThanOrEqual(a: System_Runtime_CompilerServices.ITuple, b: System_Runtime_CompilerServices.ITuple): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
122
+ Distance(a: System.DateOnly, b: System.DateOnly): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
123
+ Distance(a: System.DateTime, b: System.DateTime): ExtensionMethods_Microsoft_EntityFrameworkCore<System.TimeSpan>;
124
+ ToDate(value: string, format: string): ExtensionMethods_Microsoft_EntityFrameworkCore<System.DateOnly>;
125
+ ToTimestamp(value: string, format: string): ExtensionMethods_Microsoft_EntityFrameworkCore<System.DateTime>;
126
+ ArrayToTsVector(lexemes: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsVector>;
127
+ ToTsVector(document: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsVector>;
128
+ ToTsVector(config: string, document: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsVector>;
129
+ PlainToTsQuery(query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsQuery>;
130
+ PlainToTsQuery(config: string, query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsQuery>;
131
+ PhraseToTsQuery(query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsQuery>;
132
+ PhraseToTsQuery(config: string, query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsQuery>;
133
+ ToTsQuery(query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsQuery>;
134
+ ToTsQuery(config: string, query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsQuery>;
135
+ WebSearchToTsQuery(query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsQuery>;
136
+ WebSearchToTsQuery(config: string, query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlTsQuery>;
137
+ Unaccent(regDictionary: string, text: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
138
+ Unaccent(text: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
139
+ FuzzyStringMatchSoundex(text: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
140
+ FuzzyStringMatchDifference(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
141
+ FuzzyStringMatchLevenshtein(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
142
+ FuzzyStringMatchLevenshtein(source: string, target: string, insertionCost: int, deletionCost: int, substitutionCost: int): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
143
+ FuzzyStringMatchLevenshteinLessEqual(source: string, target: string, maximumDistance: int): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
144
+ FuzzyStringMatchLevenshteinLessEqual(source: string, target: string, insertionCost: int, deletionCost: int, substitutionCost: int, maximumDistance: int): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
145
+ FuzzyStringMatchMetaphone(text: string, maximumOutputLength: int): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
146
+ FuzzyStringMatchDoubleMetaphone(text: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
147
+ FuzzyStringMatchDoubleMetaphoneAlt(text: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
148
+ JsonContains(json: unknown, contained: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
149
+ JsonContained(contained: unknown, json: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
150
+ JsonExists(json: unknown, key: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
151
+ JsonExistAny(json: unknown, ...keys: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
152
+ JsonExistAll(json: unknown, ...keys: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
153
+ JsonTypeof(json: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
154
+ LessThan(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
155
+ LessThan(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
156
+ LessThanOrEqual(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
157
+ LessThanOrEqual(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
158
+ GreaterThanOrEqual(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
159
+ GreaterThanOrEqual(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
160
+ GreaterThan(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
161
+ GreaterThan(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
162
+ ContainedBy(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
163
+ ContainedByOrEqual(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
164
+ Contains(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
165
+ ContainsOrEqual(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
166
+ ContainsOrContainedBy(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
167
+ BitwiseNot(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
168
+ BitwiseNot(macaddr: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net_NetworkInformation.PhysicalAddress>;
169
+ BitwiseAnd(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
170
+ BitwiseAnd(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net_NetworkInformation.PhysicalAddress>;
171
+ BitwiseOr(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
172
+ BitwiseOr(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net_NetworkInformation.PhysicalAddress>;
173
+ Add(inet: NpgsqlTypes.NpgsqlInet, value: int): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
174
+ Subtract(inet: NpgsqlTypes.NpgsqlInet, value: long): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
175
+ Subtract(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
176
+ Abbreviate(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
177
+ Abbreviate(cidr: System_Net.IPNetwork): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
178
+ Abbreviate(cidr: NpgsqlTypes.NpgsqlCidr): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
179
+ Broadcast(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
180
+ Family(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
181
+ Host(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
182
+ HostMask(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
183
+ MaskLength(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
184
+ Netmask(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
185
+ Network(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net.IPNetwork>;
186
+ SetMaskLength(inet: NpgsqlTypes.NpgsqlInet, length: int): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlInet>;
187
+ SetMaskLength(cidr: System_Net.IPNetwork, length: int): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net.IPNetwork>;
188
+ SetMaskLength(cidr: NpgsqlTypes.NpgsqlCidr, length: int): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlCidr>;
189
+ Text(inet: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
190
+ SameFamily(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
191
+ Merge(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net.IPNetwork>;
192
+ Truncate(macAddress: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net_NetworkInformation.PhysicalAddress>;
193
+ Set7BitMac8(macAddress: System_Net_NetworkInformation.PhysicalAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net_NetworkInformation.PhysicalAddress>;
194
+ LessThan(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
195
+ LessThanOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
196
+ GreaterThanOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
197
+ GreaterThan(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
198
+ ContainedBy(inet: System_Net.IPAddress, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
199
+ ContainsOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System_Net.IPAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
200
+ ContainedBy(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
201
+ ContainedByOrEqual(inet: System_Net.IPAddress, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
202
+ ContainedByOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
203
+ Contains(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System_Net.IPAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
204
+ Contains(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
205
+ ContainsOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
206
+ ContainsOrContainedBy(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System_Net.IPAddress): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
207
+ ContainsOrContainedBy(inet: System_Net.IPAddress, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
208
+ ContainsOrContainedBy(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
209
+ BitwiseNot(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
210
+ BitwiseAnd(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
211
+ BitwiseOr(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
212
+ Add(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, value: int): ExtensionMethods_Microsoft_EntityFrameworkCore<System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
213
+ Subtract(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, value: int): ExtensionMethods_Microsoft_EntityFrameworkCore<System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
214
+ Subtract(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
215
+ Abbreviate(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
216
+ Broadcast(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net.IPAddress>;
217
+ Family(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
218
+ Host(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
219
+ HostMask(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net.IPAddress>;
220
+ MaskLength(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
221
+ Netmask(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Net.IPAddress>;
222
+ Network(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
223
+ SetMaskLength(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, length: int): ExtensionMethods_Microsoft_EntityFrameworkCore<System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
224
+ Text(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
225
+ SameFamily(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
226
+ Merge(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
227
+ TrigramsShow(text: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string[]>;
228
+ TrigramsSimilarity(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
229
+ TrigramsWordSimilarity(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
230
+ TrigramsStrictWordSimilarity(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
231
+ TrigramsAreSimilar(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
232
+ TrigramsAreWordSimilar(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
233
+ TrigramsAreNotWordSimilar(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
234
+ TrigramsAreStrictWordSimilar(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
235
+ TrigramsAreNotStrictWordSimilar(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
236
+ TrigramsSimilarityDistance(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
237
+ TrigramsWordSimilarityDistance(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
238
+ TrigramsWordSimilarityDistanceInverted(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
239
+ TrigramsStrictWordSimilarityDistance(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
240
+ TrigramsStrictWordSimilarityDistanceInverted(source: string, target: string): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
241
+ }
242
+
243
+ export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade {
244
+ IsNpgsql(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
245
+ SetDbDataSource(dataSource: System_Data_Common.DbDataSource): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
246
+ }
247
+
248
+ export interface __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder {
249
+ HasStorageParameter(parameterName: string, parameterValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
250
+ IsUnlogged(unlogged?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
251
+ UseCockroachDbInterleaveInParent(parentTableType: System.Type, interleavePrefix: System_Collections_Generic.List_1<System_Internal.String>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
252
+ }
253
+
254
+ export interface __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T> {
255
+ HasGeneratedTsVectorColumn(tsVectorPropertyExpression: System_Linq_Expressions.Expression_1<System.Func_2<T, NpgsqlTypes.NpgsqlTsVector>>, config: string, includeExpression: System_Linq_Expressions.Expression_1<System.Func_2<T, unknown>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<T>>;
256
+ HasStorageParameter(parameterName: string, parameterValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<T>>;
257
+ IsUnlogged(unlogged?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<T>>;
258
+ UseCockroachDbInterleaveInParent(parentTableType: System.Type, interleavePrefix: System_Collections_Generic.List_1<System_Internal.String>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<T>>;
259
+ }
260
+
261
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder {
262
+ HasStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
263
+ CanSetStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
264
+ IsUnlogged(unlogged?: boolean, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
265
+ CanSetIsUnlogged(unlogged?: boolean, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
266
+ }
267
+
268
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder {
269
+ HasMethod(method: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
270
+ CanSetMethod(method: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
271
+ HasOperators(operators: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
272
+ CanSetOperators(operators: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
273
+ IsTsVectorExpressionIndex(config: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
274
+ CanSetIsTsVectorExpressionIndex(config: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
275
+ UseCollation(values: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
276
+ CanSetCollation(values: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
277
+ HasNullSortOrder(values: System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder>, fromDataAnnotation: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
278
+ CanSetNullSortOrder(values: System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder>, fromDataAnnotation: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
279
+ IncludeProperties(propertyNames: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
280
+ CanSetIncludeProperties(propertyNames: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
281
+ IsCreatedConcurrently(createdConcurrently: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
282
+ CanSetIsCreatedConcurrently(createdConcurrently: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
283
+ AreNullsDistinct(nullsDistinct?: boolean, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
284
+ CanSetAreNullsDistinct(nullsDistinct?: boolean, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
285
+ HasStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
286
+ CanSetStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
287
+ }
288
+
289
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder {
290
+ HasHiLoSequence(name: string, schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder | undefined>;
291
+ CanSetHiLoSequence(name: string, schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
292
+ HasValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
293
+ CanSetValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
294
+ HasPostgresExtension(schema: string, name: string, version?: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
295
+ HasPostgresExtension(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
296
+ CanSetPostgresExtension(schema: string, name: string, version?: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
297
+ HasPostgresEnum(schema: string, name: string, labels: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder>;
298
+ CanSetPostgresEnum(schema: string, name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
299
+ }
300
+
301
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder {
302
+ HasHiLoSequence(name: string, schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder | undefined>;
303
+ CanSetHiLoSequence(name: string, schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
304
+ HasSequence(name: string, schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder | undefined>;
305
+ CanSetSequence(name: string, schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
306
+ HasValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
307
+ CanSetValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
308
+ CanSetValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
309
+ HasIdentityOptions(startValue?: System.Nullable_1<System_Internal.Int64>, incrementBy?: System.Nullable_1<System_Internal.Int64>, minValue?: System.Nullable_1<System_Internal.Int64>, maxValue?: System.Nullable_1<System_Internal.Int64>, cyclic?: System.Nullable_1<System_Internal.Boolean>, numbersToCache?: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
310
+ CanSetIdentityOptions(startValue?: System.Nullable_1<System_Internal.Int64>, incrementBy?: System.Nullable_1<System_Internal.Int64>, minValue?: System.Nullable_1<System_Internal.Int64>, maxValue?: System.Nullable_1<System_Internal.Int64>, cyclic?: System.Nullable_1<System_Internal.Boolean>, numbersToCache?: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
311
+ IsGeneratedTsVectorColumn(config: string, includedPropertyNames: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
312
+ CanSetIsGeneratedTsVectorColumn(config: string, includedPropertyNames: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
313
+ UseCompressionMethod(compressionMethod: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
314
+ CanSetCompressionMethod(compressionMethod: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
315
+ }
316
+
317
+ export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder {
318
+ HasMethod(method: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
319
+ HasOperators(...operators: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
320
+ IsTsVectorExpressionIndex(config: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
321
+ UseCollation(...values: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
322
+ HasNullSortOrder(...values: Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
323
+ IncludeProperties(...propertyNames: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
324
+ IsCreatedConcurrently(createdConcurrently?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
325
+ AreNullsDistinct(nullsDistinct?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
326
+ HasStorageParameter(parameterName: string, parameterValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
327
+ }
328
+
329
+ export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T> {
330
+ HasMethod(method: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
331
+ HasOperators(...operators: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
332
+ IsTsVectorExpressionIndex(config: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
333
+ UseCollation(...values: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
334
+ HasNullSortOrder(...values: Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
335
+ IncludeProperties(...propertyNames: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
336
+ IncludeProperties(includeExpression: System_Linq_Expressions.Expression_1<System.Func_2<T, unknown>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
337
+ IsCreatedConcurrently(createdConcurrently?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
338
+ AreNullsDistinct(nullsDistinct?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
339
+ HasStorageParameter(parameterName: string, parameterValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
340
+ }
341
+
342
+ export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder {
343
+ UseHiLo(name?: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
344
+ UseSequence(name?: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
345
+ UseSerialColumn(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
346
+ UseIdentityAlwaysColumn(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
347
+ UseIdentityByDefaultColumn(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
348
+ UseIdentityColumn(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
349
+ HasIdentityOptions(startValue?: System.Nullable_1<System_Internal.Int64>, incrementBy?: System.Nullable_1<System_Internal.Int64>, minValue?: System.Nullable_1<System_Internal.Int64>, maxValue?: System.Nullable_1<System_Internal.Int64>, cyclic?: System.Nullable_1<System_Internal.Boolean>, numbersToCache?: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
350
+ IsGeneratedTsVectorColumn(config: string, ...includedPropertyNames: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
351
+ UseCompressionMethod(compressionMethod: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
352
+ }
353
+
354
+ export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T> {
355
+ UseHiLo(name?: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
356
+ UseSequence(name?: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
357
+ UseSerialColumn(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
358
+ UseIdentityAlwaysColumn(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
359
+ UseIdentityByDefaultColumn(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
360
+ UseIdentityColumn(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
361
+ HasIdentityOptions(startValue?: System.Nullable_1<System_Internal.Int64>, incrementBy?: System.Nullable_1<System_Internal.Int64>, minValue?: System.Nullable_1<System_Internal.Int64>, maxValue?: System.Nullable_1<System_Internal.Int64>, cyclic?: System.Nullable_1<System_Internal.Boolean>, numbersToCache?: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
362
+ HasPostgresArrayConversion<TElementProperty, TElementProvider>(convertToProviderExpression: System_Linq_Expressions.Expression_1<System.Func_2<TElementProperty, TElementProvider>>, convertFromProviderExpression: System_Linq_Expressions.Expression_1<System.Func_2<TElementProvider, TElementProperty>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TElementProperty[]>>;
363
+ HasPostgresArrayConversion<TElementProperty, TElementProvider>(elementValueConverter: Microsoft_EntityFrameworkCore_Storage_ValueConversion.ValueConverter): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TElementProperty[]>>;
364
+ IsGeneratedTsVectorColumn(config: string, ...includedPropertyNames: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<NpgsqlTypes.NpgsqlTsVector>>;
365
+ UseCompressionMethod(compressionMethod: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
366
+ }
367
+
368
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
369
+ SetStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<unknown>;
370
+ GetStorageParameterConfigurationSource(parameterName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
371
+ SetIsUnlogged(unlogged: boolean, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
372
+ GetIsUnloggedConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
373
+ }
374
+
375
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndex {
376
+ SetMethod(method: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
377
+ GetMethodConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
378
+ SetOperators(operators: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
379
+ GetOperatorsConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
380
+ SetCollation(collations: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
381
+ GetCollationConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
382
+ SetNullSortOrder(nullSortOrder: System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder> | undefined>;
383
+ GetNullSortOrderConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
384
+ SetIncludeProperties(properties: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
385
+ GetIncludePropertiesConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
386
+ SetIsCreatedConcurrently(createdConcurrently: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
387
+ GetIsCreatedConcurrentlyConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
388
+ SetAreNullsDistinct(nullsDistinct: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
389
+ GetAreNullsDistinctConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
390
+ SetTsVectorConfig(config: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
391
+ GetTsVectorConfigConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
392
+ SetStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<unknown>;
393
+ GetStorageParameterConfigurationSource(parameterName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
394
+ }
395
+
396
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModel {
397
+ SetHiLoSequenceName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
398
+ GetHiLoSequenceNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
399
+ SetHiLoSequenceSchema(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
400
+ GetHiLoSequenceSchemaConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
401
+ SetSequenceNameSuffix(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
402
+ GetSequenceNameSuffixConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
403
+ SetSequenceSchema(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
404
+ GetSequenceSchemaConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
405
+ SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
406
+ GetValueGenerationStrategyConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
407
+ GetOrAddPostgresExtension(schema: string, name: string, version: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>;
408
+ GetOrAddPostgresEnum(schema: string, name: string, labels: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>;
409
+ SetDatabaseTemplate(template: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
410
+ GetDatabaseTemplateConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
411
+ SetTablespace(tablespace: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
412
+ GetTablespaceConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
413
+ }
414
+
415
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
416
+ SetHiLoSequenceName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
417
+ GetHiLoSequenceNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
418
+ SetHiLoSequenceSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
419
+ GetHiLoSequenceSchemaConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
420
+ RemoveHiLoOptions(): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
421
+ SetSequenceName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
422
+ GetSequenceNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
423
+ SetSequenceSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
424
+ GetSequenceSchemaConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
425
+ SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
426
+ SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
427
+ GetValueGenerationStrategyConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
428
+ GetValueGenerationStrategyConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
429
+ SetIdentityStartValue(startValue: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
430
+ GetIdentityStartValueConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
431
+ SetIdentityIncrementBy(incrementBy: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
432
+ GetIdentityIncrementByConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
433
+ SetIdentityMinValue(minValue: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
434
+ GetIdentityMinValueConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
435
+ SetIdentityMaxValue(maxValue: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
436
+ GetIdentityMaxValueConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
437
+ SetIdentityIsCyclic(cyclic: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
438
+ GetIdentityIsCyclicConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
439
+ SetIdentityNumbersToCache(numbersToCache: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
440
+ GetIdentityNumbersToCacheConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
441
+ RemoveIdentityOptions(): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
442
+ SetTsVectorConfig(config: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
443
+ GetTsVectorConfigConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
444
+ SetTsVectorProperties(properties: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
445
+ GetTsVectorPropertiesConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
446
+ SetCompressionMethod(compressionMethod: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
447
+ GetCompressionMethodConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
448
+ }
449
+
450
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides {
451
+ SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
452
+ GetValueGenerationStrategyConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
453
+ }
454
+
455
+ export interface __Ext_Microsoft_EntityFrameworkCore_IEntityType {
456
+ GetStorageParameter(parameterName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
457
+ }
458
+
459
+ export interface __Ext_Microsoft_EntityFrameworkCore_IIndex {
460
+ GetStorageParameter(parameterName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
461
+ }
462
+
463
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
464
+ SetStorageParameter(parameterName: string, parameterValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
465
+ SetIsUnlogged(unlogged: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
466
+ }
467
+
468
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableIndex {
469
+ SetMethod(method: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
470
+ SetOperators(operators: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
471
+ SetCollation(collations: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
472
+ SetNullSortOrder(nullSortOrder: System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
473
+ SetIncludeProperties(properties: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
474
+ SetIsCreatedConcurrently(createdConcurrently: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
475
+ SetAreNullsDistinct(nullsDistinct: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
476
+ SetTsVectorConfig(config: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
477
+ SetStorageParameter(parameterName: string, parameterValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
478
+ }
479
+
480
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableModel {
481
+ SetHiLoSequenceName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
482
+ SetHiLoSequenceSchema(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
483
+ SetSequenceNameSuffix(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
484
+ SetSequenceSchema(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
485
+ SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
486
+ GetOrAddPostgresExtension(schema: string, name: string, version: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>;
487
+ GetOrAddPostgresEnum(schema: string, name: string, labels: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>;
488
+ GetOrAddPostgresRange(schema: string, name: string, subtype: string, canonicalFunction?: string, subtypeOpClass?: string, collation?: string, subtypeDiff?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresRange>;
489
+ SetDatabaseTemplate(template: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
490
+ SetTablespace(tablespace: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
491
+ GetOrAddCollation(schema: string, name: string, lcCollate: string, lcCtype: string, provider?: string, deterministic?: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresCollation>;
492
+ }
493
+
494
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
495
+ SetHiLoSequenceName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
496
+ SetHiLoSequenceSchema(schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
497
+ RemoveHiLoOptions(): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
498
+ SetSequenceName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
499
+ SetSequenceSchema(schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
500
+ SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
501
+ SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
502
+ SetIdentityStartValue(startValue: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
503
+ SetIdentityIncrementBy(incrementBy: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
504
+ SetIdentityMinValue(minValue: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
505
+ SetIdentityMaxValue(maxValue: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
506
+ SetIdentityIsCyclic(cyclic: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
507
+ SetIdentityNumbersToCache(numbersToCache: System.Nullable_1<System_Internal.Int64>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
508
+ RemoveIdentityOptions(): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
509
+ SetTsVectorConfig(config: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
510
+ SetTsVectorProperties(properties: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
511
+ SetCompressionMethod(compressionMethod: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
512
+ }
513
+
514
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides {
515
+ SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
516
+ }
517
+
518
+ export interface __Ext_Microsoft_EntityFrameworkCore_IProperty {
519
+ FindHiLoSequence(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
520
+ FindHiLoSequence(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
521
+ FindSequence(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
522
+ FindSequence(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
523
+ }
524
+
525
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
526
+ GetStorageParameters(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.Dictionary_2<System_Internal.String, unknown | undefined>>;
527
+ GetIsUnlogged(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
528
+ GetCockroachDbInterleaveInParent(): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.CockroachDbInterleaveInParent>;
529
+ }
530
+
531
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex {
532
+ GetMethod(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
533
+ GetOperators(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
534
+ GetCollation(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
535
+ GetNullSortOrder(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder> | undefined>;
536
+ GetIncludeProperties(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
537
+ IsCreatedConcurrently(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
538
+ GetAreNullsDistinct(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
539
+ GetTsVectorConfig(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
540
+ GetStorageParameters(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.Dictionary_2<System_Internal.String, unknown | undefined>>;
541
+ }
542
+
543
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel {
544
+ GetHiLoSequenceName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
545
+ GetHiLoSequenceSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
546
+ GetSequenceNameSuffix(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
547
+ GetSequenceSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
548
+ GetValueGenerationStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
549
+ GetPostgresExtensions(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>>;
550
+ GetPostgresEnums(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>>;
551
+ PostgresRanges(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresRange>>;
552
+ GetDatabaseTemplate(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
553
+ GetTablespace(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
554
+ GetCollations(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresCollation>>;
555
+ }
556
+
557
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty {
558
+ GetHiLoSequenceName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
559
+ GetHiLoSequenceName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
560
+ GetHiLoSequenceSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
561
+ GetHiLoSequenceSchema(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
562
+ FindHiLoSequence(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
563
+ FindHiLoSequence(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
564
+ GetSequenceName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
565
+ GetSequenceName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
566
+ GetSequenceSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
567
+ GetSequenceSchema(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
568
+ FindSequence(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
569
+ FindSequence(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
570
+ GetValueGenerationStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>;
571
+ GetValueGenerationStrategy(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>;
572
+ GetIdentityStartValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
573
+ GetIdentityIncrementBy(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
574
+ GetIdentityMinValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
575
+ GetIdentityMaxValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
576
+ GetIdentityIsCyclic(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
577
+ GetIdentityNumbersToCache(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int64>>;
578
+ GetTsVectorConfig(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
579
+ GetTsVectorProperties(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
580
+ GetCompressionMethod(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
581
+ GetCompressionMethod(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
582
+ }
583
+
584
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides {
585
+ GetValueGenerationStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
586
+ }
587
+
588
+ export interface __Ext_Microsoft_EntityFrameworkCore_MigrationBuilder {
589
+ IsNpgsql(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
590
+ EnsurePostgresExtension(name: string, schema?: string, version?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder>;
591
+ }
592
+
593
+ export interface __Ext_Microsoft_EntityFrameworkCore_AlterDatabaseOperation {
594
+ GetPostgresCollations(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresCollation>>;
595
+ GetOldPostgresCollations(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresCollation>>;
596
+ GetPostgresExtensions(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>>;
597
+ GetOldPostgresExtensions(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>>;
598
+ GetPostgresEnums(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>>;
599
+ GetOldPostgresEnums(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>>;
600
+ GetPostgresRanges(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresRange>>;
601
+ GetOldPostgresRanges(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresRange>>;
602
+ GetOrAddPostgresExtension(schema: string, name: string, version: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>;
603
+ }
604
+
605
+ export interface __Ext_Microsoft_EntityFrameworkCore_ModelBuilder {
606
+ UseHiLo(name?: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
607
+ UseSerialColumns(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
608
+ UseIdentityAlwaysColumns(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
609
+ UseIdentityByDefaultColumns(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
610
+ UseIdentityColumns(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
611
+ UseKeySequences(nameSuffix?: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
612
+ HasPostgresExtension(schema: string, name: string, version?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
613
+ HasPostgresExtension(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
614
+ HasPostgresEnum(schema: string, name: string, labels: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
615
+ HasPostgresEnum(name: string, labels: string[]): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
616
+ HasPostgresEnum<TEnum>(schema?: string, name?: string, nameTranslator?: Npgsql.INpgsqlNameTranslator): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
617
+ UseDatabaseTemplate(templateDatabaseName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
618
+ HasPostgresRange(schema: string, name: string, subtype: string, canonicalFunction?: string, subtypeOpClass?: string, collation?: string, subtypeDiff?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
619
+ HasPostgresRange(name: string, subtype: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
620
+ UseTablespace(tablespace: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
621
+ HasCollation(name: string, locale: string, provider?: string, deterministic?: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
622
+ HasCollation(schema: string, name: string, locale: string, provider?: string, deterministic?: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
623
+ HasCollation(schema: string, name: string, lcCollate: string, lcCtype: string, provider?: string, deterministic?: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
624
+ }
625
+
626
+ export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseModel {
627
+ GetOrAddPostgresExtension(schema: string, name: string, version: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>;
628
+ GetPostgresExtensions(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>>;
629
+ GetPostgresEnums(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>>;
630
+ }
631
+
26
632
  export interface __Ext_Microsoft_EntityFrameworkCore_NpgsqlCube {
27
633
  Overlaps(other: NpgsqlTypes.NpgsqlCube): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
28
634
  Contains(other: NpgsqlTypes.NpgsqlCube): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
@@ -39,7 +645,7 @@ export interface __Ext_Microsoft_EntityFrameworkCore_NpgsqlCube {
39
645
 
40
646
  export interface __Ext_Microsoft_EntityFrameworkCore_NpgsqlRange_1<T> {
41
647
  ContainedBy(multirange: NpgsqlTypes.NpgsqlRange_1<T>[]): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
42
- ContainedBy(multirange: List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
648
+ ContainedBy(multirange: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
43
649
  Contains(value: T): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
44
650
  Contains(b: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
45
651
  ContainedBy(b: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
@@ -95,27 +701,89 @@ export interface __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsVector {
95
701
  RankCoverDensity(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization): ExtensionMethods_Microsoft_EntityFrameworkCore<float>;
96
702
  }
97
703
 
704
+ export interface __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> {
705
+ RangeAgg<T>(): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlRange_1<T>[]>;
706
+ RangeIntersectAgg<T>(): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlRange_1<T>>;
707
+ RangeIntersectAgg<T>(): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlRange_1<T>[]>;
708
+ }
709
+
710
+ export interface __Ext_Microsoft_EntityFrameworkCore_List_1<T> {
711
+ Contains<T>(value: T): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
712
+ Contains<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
713
+ Contains<T>(multirange2: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
714
+ ContainedBy<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
715
+ Overlaps<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
716
+ Overlaps<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
717
+ IsStrictlyLeftOf<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
718
+ IsStrictlyLeftOf<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
719
+ IsStrictlyRightOf<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
720
+ IsStrictlyRightOf<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
721
+ DoesNotExtendLeftOf<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
722
+ DoesNotExtendLeftOf<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
723
+ DoesNotExtendRightOf<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
724
+ DoesNotExtendRightOf<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
725
+ IsAdjacentTo<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
726
+ IsAdjacentTo<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
727
+ Union<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>>;
728
+ Intersect<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>>;
729
+ Except<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>>;
730
+ Merge<T>(): ExtensionMethods_Microsoft_EntityFrameworkCore<NpgsqlTypes.NpgsqlRange_1<T>>;
731
+ }
732
+
733
+ export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex {
734
+ AreCompatibleForNpgsql(duplicateIndex: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
735
+ }
736
+
737
+ export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
738
+ AddNpgsql<TContext>(connectionString: string, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>, optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
739
+ AddEntityFrameworkNpgsql(): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
740
+ }
741
+
742
+ export interface __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal_ShapedQueryExpression {
743
+ TryExtractArray(array: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, ignoreOrderings?: boolean, ignorePredicate?: boolean): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<boolean>;
744
+ TryExtractArray(array: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, projectedColumn: Microsoft_EntityFrameworkCore_Query_SqlExpressions.ColumnExpression, ignoreOrderings?: boolean, ignorePredicate?: boolean): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<boolean>;
745
+ TryExtractJsonArray(jsonArray: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, projectedElement: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, isElementNullable: boolean, ignoreOrderings?: boolean, ignorePredicate?: boolean): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<boolean>;
746
+ TryConvertToArray(array: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, ignoreOrderings?: boolean, ignorePredicate?: boolean): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<boolean>;
747
+ }
748
+
749
+ export interface __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Internal_IDiagnosticsLogger_1<T> {
750
+ MissingSchemaWarning(schemaName: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
751
+ MissingTableWarning(tableName: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
752
+ ForeignKeyReferencesMissingPrincipalTableWarning(foreignKeyName: string, tableName: string, principalTableName: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
753
+ ColumnFound(tableName: string, columnName: string, dataTypeName: string, nullable: boolean, identity: boolean, defaultValue: string, computedValue: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
754
+ CollationFound(schema: string, collationName: string, lcCollate: string, lcCtype: string, provider: string, deterministic: boolean): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
755
+ UniqueConstraintFound(uniqueConstraintName: string, tableName: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
756
+ EnumColumnSkippedWarning(columnName: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
757
+ ExpressionIndexSkippedWarning(indexName: string, tableName: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
758
+ UnsupportedColumnIndexSkippedWarning(indexName: string, tableName: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
759
+ UnsupportedColumnConstraintSkippedWarning(indexName: string, tableName: string): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<void>;
760
+ }
761
+
98
762
  export interface __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_NpgsqlValueGenerationStrategy {
99
763
  IsIdentity(): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata<boolean>;
100
764
  }
101
765
 
766
+ export interface __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_Nullable_1<T> {
767
+ IsIdentity(): ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata<boolean>;
768
+ }
769
+
102
770
  export interface __Ext_Npgsql_Internal_TypeInfoMapping {
103
771
  CreateInfo(options: Npgsql_Internal.PgSerializerOptions, converter: Npgsql_Internal.PgConverter): ExtensionMethods_Npgsql_Internal<Npgsql_Internal.PgTypeInfo>;
104
- CreateInfo(options: Npgsql_Internal.PgSerializerOptions, converter: Npgsql_Internal.PgConverter, preferredFormat: Nullable_1<Npgsql_Internal.DataFormat>, supportsWriting: boolean): ExtensionMethods_Npgsql_Internal<Npgsql_Internal.PgTypeInfo>;
772
+ CreateInfo(options: Npgsql_Internal.PgSerializerOptions, converter: Npgsql_Internal.PgConverter, preferredFormat?: System.Nullable_1<Npgsql_Internal.DataFormat>, supportsWriting?: boolean): ExtensionMethods_Npgsql_Internal<Npgsql_Internal.PgTypeInfo>;
105
773
  CreateInfo(options: Npgsql_Internal.PgSerializerOptions, resolver: Npgsql_Internal.PgConverterResolver, includeDataTypeName: boolean): ExtensionMethods_Npgsql_Internal<Npgsql_Internal.PgResolverTypeInfo>;
106
- CreateInfo(options: Npgsql_Internal.PgSerializerOptions, resolver: Npgsql_Internal.PgConverterResolver, includeDataTypeName: boolean, preferredFormat: Nullable_1<Npgsql_Internal.DataFormat>, supportsWriting: boolean): ExtensionMethods_Npgsql_Internal<Npgsql_Internal.PgResolverTypeInfo>;
774
+ CreateInfo(options: Npgsql_Internal.PgSerializerOptions, resolver: Npgsql_Internal.PgConverterResolver, includeDataTypeName: boolean, preferredFormat?: System.Nullable_1<Npgsql_Internal.DataFormat>, supportsWriting?: boolean): ExtensionMethods_Npgsql_Internal<Npgsql_Internal.PgResolverTypeInfo>;
107
775
  }
108
776
 
109
777
  export interface __Ext_Npgsql_Replication_LogicalReplicationConnection {
110
- CreatePgOutputReplicationSlot(slotName: string, temporarySlot: boolean, slotSnapshotInitMode: Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase: boolean, cancellationToken: CancellationToken): ExtensionMethods_Npgsql_Replication<Task_1<Npgsql_Replication_PgOutput.PgOutputReplicationSlot>>;
111
- StartReplication(slot: Npgsql_Replication_PgOutput.PgOutputReplicationSlot, options: Npgsql_Replication_PgOutput.PgOutputReplicationOptions, cancellationToken: CancellationToken, walLocation: Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>): ExtensionMethods_Npgsql_Replication<IAsyncEnumerable_1<Npgsql_Replication_PgOutput_Messages.PgOutputReplicationMessage>>;
112
- CreateTestDecodingReplicationSlot(slotName: string, temporarySlot: boolean, slotSnapshotInitMode: Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase: boolean, cancellationToken: CancellationToken): ExtensionMethods_Npgsql_Replication<Task_1<Npgsql_Replication_TestDecoding.TestDecodingReplicationSlot>>;
113
- StartReplication(slot: Npgsql_Replication_TestDecoding.TestDecodingReplicationSlot, cancellationToken: CancellationToken, options: Npgsql_Replication_TestDecoding.TestDecodingOptions, walLocation: Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>): ExtensionMethods_Npgsql_Replication<IAsyncEnumerable_1<Npgsql_Replication_TestDecoding.TestDecodingData>>;
778
+ CreatePgOutputReplicationSlot(slotName: string, temporarySlot?: boolean, slotSnapshotInitMode?: System.Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase?: boolean, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Npgsql_Replication<System_Threading_Tasks.Task_1<Npgsql_Replication_PgOutput.PgOutputReplicationSlot>>;
779
+ StartReplication(slot: Npgsql_Replication_PgOutput.PgOutputReplicationSlot, options: Npgsql_Replication_PgOutput.PgOutputReplicationOptions, cancellationToken: System_Threading.CancellationToken, walLocation?: System.Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>): ExtensionMethods_Npgsql_Replication<System_Collections_Generic.IAsyncEnumerable_1<Npgsql_Replication_PgOutput_Messages.PgOutputReplicationMessage>>;
780
+ CreateTestDecodingReplicationSlot(slotName: string, temporarySlot?: boolean, slotSnapshotInitMode?: System.Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase?: boolean, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Npgsql_Replication<System_Threading_Tasks.Task_1<Npgsql_Replication_TestDecoding.TestDecodingReplicationSlot>>;
781
+ StartReplication(slot: Npgsql_Replication_TestDecoding.TestDecodingReplicationSlot, cancellationToken: System_Threading.CancellationToken, options?: Npgsql_Replication_TestDecoding.TestDecodingOptions, walLocation?: System.Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>): ExtensionMethods_Npgsql_Replication<System_Collections_Generic.IAsyncEnumerable_1<Npgsql_Replication_TestDecoding.TestDecodingData>>;
114
782
  }
115
783
 
116
784
  export interface __Ext_Npgsql_Replication_Internal_LogicalReplicationConnection {
117
- CreateLogicalReplicationSlot(slotName: string, outputPlugin: string, isTemporary: boolean, slotSnapshotInitMode: Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase: boolean, cancellationToken: CancellationToken): ExtensionMethods_Npgsql_Replication_Internal<Task_1<Npgsql_Replication.ReplicationSlotOptions>>;
118
- StartLogicalReplication(slot: Npgsql_Replication_Internal.LogicalReplicationSlot, cancellationToken: CancellationToken, walLocation: Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>, options: IEnumerable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>, bypassingStream: boolean): ExtensionMethods_Npgsql_Replication_Internal<IAsyncEnumerable_1<Npgsql_Replication.XLogDataMessage>>;
785
+ CreateLogicalReplicationSlot(slotName: string, outputPlugin: string, isTemporary?: boolean, slotSnapshotInitMode?: System.Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase?: boolean, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Npgsql_Replication_Internal<System_Threading_Tasks.Task_1<Npgsql_Replication.ReplicationSlotOptions>>;
786
+ StartLogicalReplication(slot: Npgsql_Replication_Internal.LogicalReplicationSlot, cancellationToken: System_Threading.CancellationToken, walLocation?: System.Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>, options?: System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<System_Internal.String, System_Internal.String>>, bypassingStream?: boolean): ExtensionMethods_Npgsql_Replication_Internal<System_Collections_Generic.IAsyncEnumerable_1<Npgsql_Replication.XLogDataMessage>>;
119
787
  }
120
788
 
121
789
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
@@ -123,10 +791,81 @@ export type ExtensionMethods_Microsoft_EntityFrameworkCore<TShape> =
123
791
  TShape extends null | undefined ? TShape
124
792
  : TShape extends void ? void
125
793
  : TShape & (
794
+ (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder : {}) &
795
+ (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T0> : {}) &
796
+ (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) &
797
+ (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) &
798
+ (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) &
799
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) &
800
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndex : {}) &
801
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __Ext_Microsoft_EntityFrameworkCore_IConventionModel : {}) &
802
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) &
803
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides : {}) &
804
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_IEntityType : {}) &
805
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __Ext_Microsoft_EntityFrameworkCore_IIndex : {}) &
806
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) &
807
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __Ext_Microsoft_EntityFrameworkCore_IMutableIndex : {}) &
808
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_IMutableModel : {}) &
809
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) &
810
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides : {}) &
811
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_IProperty : {}) &
812
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType : {}) &
813
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex : {}) &
814
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel : {}) &
815
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty : {}) &
816
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides : {}) &
817
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder : {}) &
818
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0> : {}) &
819
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) &
820
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) &
821
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) &
822
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) &
823
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder : {}) &
824
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0> : {}) &
825
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder : {}) &
826
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) &
827
+ (TShape extends Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder ? __Ext_Microsoft_EntityFrameworkCore_MigrationBuilder : {}) &
828
+ (TShape extends Microsoft_EntityFrameworkCore_Migrations_Operations.AlterDatabaseOperation ? __Ext_Microsoft_EntityFrameworkCore_AlterDatabaseOperation : {}) &
829
+ (TShape extends Microsoft_EntityFrameworkCore_Scaffolding_Metadata.DatabaseModel ? __Ext_Microsoft_EntityFrameworkCore_DatabaseModel : {}) &
126
830
  (TShape extends NpgsqlTypes.NpgsqlCube ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlCube : {}) &
127
831
  (TShape extends NpgsqlTypes.NpgsqlRange_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlRange_1<T0> : {}) &
128
832
  (TShape extends NpgsqlTypes.NpgsqlTsQuery ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsQuery : {}) &
129
- (TShape extends NpgsqlTypes.NpgsqlTsVector ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsVector : {})
833
+ (TShape extends NpgsqlTypes.NpgsqlTsVector ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsVector : {}) &
834
+ (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) &
835
+ (TShape extends System_Collections_Generic.List_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_List_1<T0> : {}) &
836
+ (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
837
+ );
838
+
839
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Internal
840
+ export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
841
+ TShape extends null | undefined ? TShape
842
+ : TShape extends void ? void
843
+ : TShape & (
844
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex : {})
845
+ );
846
+
847
+ // Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
848
+ export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
849
+ TShape extends null | undefined ? TShape
850
+ : TShape extends void ? void
851
+ : TShape & (
852
+ (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {})
853
+ );
854
+
855
+ // Generic helper type for extension methods in namespace: Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal
856
+ export type ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<TShape> =
857
+ TShape extends null | undefined ? TShape
858
+ : TShape extends void ? void
859
+ : TShape & (
860
+ (TShape extends Microsoft_EntityFrameworkCore_Query.ShapedQueryExpression ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal_ShapedQueryExpression : {})
861
+ );
862
+
863
+ // Generic helper type for extension methods in namespace: Npgsql.EntityFrameworkCore.PostgreSQL.Internal
864
+ export type ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<TShape> =
865
+ TShape extends null | undefined ? TShape
866
+ : TShape extends void ? void
867
+ : TShape & (
868
+ (TShape extends Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<infer T0> ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Internal_IDiagnosticsLogger_1<T0> : {})
130
869
  );
131
870
 
132
871
  // Generic helper type for extension methods in namespace: Npgsql.EntityFrameworkCore.PostgreSQL.Metadata
@@ -134,7 +873,8 @@ export type ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata<TSha
134
873
  TShape extends null | undefined ? TShape
135
874
  : TShape extends void ? void
136
875
  : TShape & (
137
- (TShape extends Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_NpgsqlValueGenerationStrategy : {})
876
+ (TShape extends Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_NpgsqlValueGenerationStrategy : {}) &
877
+ (TShape extends System.Nullable_1<infer T0> ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_Nullable_1<T0> : {})
138
878
  );
139
879
 
140
880
  // Generic helper type for extension methods in namespace: Npgsql.Internal