Skip to content

Commit

Permalink
Removing newer c# syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
nhart12 authored and Nathan Hart committed Nov 20, 2023
1 parent beeed45 commit b9e9a15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static class SqlDataTypes
/// <summary>
/// SQL column types for supported strings
/// </summary>
public static readonly ReadOnlyCollection<SqlDbType> VariableCharacterColumnTypes = new(new[] {
public static readonly ReadOnlyCollection<SqlDbType> VariableCharacterColumnTypes = new ReadOnlyCollection<SqlDbType>(new List<SqlDbType> {
SqlDbType.NVarChar,
SqlDbType.VarChar
});
Expand Down

0 comments on commit b9e9a15

Please sign in to comment.