You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fixed issue #580: Removed deprecated transitive dependency on Microsoft.NETCore.Targets by removing runtime identifier (thanks to @david-brink-talogy)
* Fixed issues #540 and #541 in README
* Added performance tests including a GitHub actions workflow
* Minor cleanups and fixes
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,8 +187,8 @@ CREATE TABLE [Logs] (
187
187
[Id] int IDENTITY(1,1) NOT NULL,
188
188
[Message] nvarchar(max) NULL,
189
189
[MessageTemplate] nvarchar(max) NULL,
190
-
[Level] nvarchar(128) NULL,
191
-
[TimeStamp] datetime NOT NULL,
190
+
[Level] nvarchar(max) NULL,
191
+
[TimeStamp] datetime NULL,
192
192
[Exception] nvarchar(max) NULL,
193
193
[Properties] nvarchar(max) NULL
194
194
@@ -468,7 +468,7 @@ If `DataLength` is set to a value different to -1 longer text will be truncated.
468
468
469
469
### Level
470
470
471
-
Thiscolumnstorestheeventlevel (Error, Information, etc.). Forbackwards-compatibilityreasonsitdefaultstoalengthof128characters, but 12 charactersisrecommended. Alternately, the `StoreAsEnum` propertycanbesetto `true` whichcausestheunderlyinglevelenumintegervaluetobestoredasaSQL `tinyint` column. The `DataType` propertycanonlybesetto `nvarchar` or `tinyint`. Settingthe `DataType` to `tinyint` isidenticaltosetting `StoreAsEnum` to `true`.
471
+
Thiscolumnstorestheeventlevel (Error, Information, etc.). Forbackwards-compatibilityreasonsitdefaultstoalengthof`nvarchar(max)`characters, but 12 charactersisrecommended. Alternately, the `StoreAsEnum` propertycanbesetto `true` whichcausestheunderlyinglevelenumintegervaluetobestoredasaSQL `tinyint` column. The `DataType` propertycanonlybesetto `nvarchar` or `tinyint`. Settingthe `DataType` to `tinyint` isidenticaltosetting `StoreAsEnum` to `true`.
0 commit comments