Skip to content

Commit e7bf5f8

Browse files
committed
Fix merge failure
1 parent 36cb97a commit e7bf5f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Npgsql/NpgsqlTypeLoadingOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ sealed class NpgsqlTypeLoadingOptions
1010
/// <summary>
1111
/// Load table composite type definitions, and not just free-standing composite types.
1212
/// </summary>
13-
public bool LoadTableComposites { get; init; }
13+
public required bool LoadTableComposites { get; init; }
1414

1515
/// <summary>
1616
/// When false, if the server doesn't support full type loading from the PostgreSQL catalogs,
@@ -39,7 +39,7 @@ public NpgsqlTypeLoadingOptionsBuilder EnableTableCompositesLoading(bool enable
3939
}
4040

4141
/// <summary>
42-
/// Set a compatibility mode for special PostgreSQL server types.
42+
/// Enable loading of types, when disabled Npgsql falls back to a small, builtin, set of known types and type ids.
4343
/// </summary>
4444
public NpgsqlTypeLoadingOptionsBuilder EnableTypeLoading(bool enable = true)
4545
{

0 commit comments

Comments
 (0)