Alex Zaytsev

Results 418 comments of Alex Zaytsev

This depends on your DB. Solution would likely be to order in memory.

You're welcome to submit a PR with fixes. The problem is with your RDBMS dialect that does not support this: other RDBMS do support the SQL generated by NHibernate in...

Thanks for the contribution. It is unlikely we'll be targeting .NET 9 version as it is not LTS. Also, we would like to avoid an external dependency.

> under NET8 Does it work correctly with lower versions?

I would just go with this implementation: ```csharp protected static Guid GenerateComb(Guid guid, DateTime utcNow) { #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP2_1_OR_GREATER Span guidArray = stackalloc byte[16]; guid.TryWriteBytes(guidArray); #else var guidArray =...

I think this was intentional. I don't think it is semantically correct to round time up, because it potentially could produce a future time.