We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beeed45 commit b9e9a15Copy full SHA for b9e9a15
src/Serilog.Sinks.MSSqlServer/Sinks/MSSqlServer/SqlDataTypes.cs
@@ -55,7 +55,7 @@ public static class SqlDataTypes
55
/// <summary>
56
/// SQL column types for supported strings
57
/// </summary>
58
- public static readonly ReadOnlyCollection<SqlDbType> VariableCharacterColumnTypes = new(new[] {
+ public static readonly ReadOnlyCollection<SqlDbType> VariableCharacterColumnTypes = new ReadOnlyCollection<SqlDbType>(new List<SqlDbType> {
59
SqlDbType.NVarChar,
60
SqlDbType.VarChar
61
});
0 commit comments