Laraue.EfCoreTriggers
Laraue.EfCoreTriggers copied to clipboard
`current_timestamp` should be converted from `DateTimeOffset.Now` instead of `new DateTimeOffset()`
In C# signature, new DateTimeOffset()
returns 0001/01/01 0:00:00 +00:00
.
So, it is not suitable for current_timestamp
representation in C#.
It should be DateTimeOffset.Now
!