@tsonic/efcore-npgsql 10.0.5 → 10.0.7

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