libu1129
libu1129
https://datatracker.ietf.org/doc/html/rfc7692 normally another library support this to 'permessage-deflate' extension default c# client is not support
I solved this incompletely by myself. https://github.com/linq2db/linq2db/blob/master/Tests/Linq/Linq/ValueConversionTests.cs I used the example above sealed class DateTimeToIntConverter : ValueConverter { public DateTimeToIntConverter() : base(v => (int)v.convert_to_unix_time_seconds(), p => p.ConvertFromUnixTimestamp(), true) { }...
> > sqlserver에서 datetime 유형은 8바이트를 사용합니다. > > 이것을 int 유형으로 변경하고 UnixTimestamp 유형으로 저장하여 테이블 용량을 줄이고 싶습니다. > > 나는 여기서 추정에 이의를 제기할 것이다. int32 Unix...
I have the same problem.