2020년 7월 7일 화요일

C# - Logging



[log4net]

<Advantages>

Widely adopted
A lot of documentation and resources online

<Disadvantages>

Doesn't use new possibilities in .NET
No structured logging


[NLog]

<Advantages>

Structured logging
More modern API
Better support for NoSQL databases

<Disadvantages>

Not as many resources as log4net


[Serilog]





MSSQL - Cursor vs Temp Table

#테이블 변수사용의 예 use pubs go declare @tmptable table (     nid int identity(1,1) not null,     title varchar (80) not null ) -- 테이블 변수 선언 inse...