Anton Curmanschii

Results 58 comments of Anton Curmanschii

@twitchax Do you plan on fixing the unfiltered header warnings?

It doesn't work by default for me on alacritty. In fact, it straight up ignores those key combos altogether. If anyone has a working hack to fix this, making all...

Maybe it's not part of what bitSlice are designed to do, but then why is assigning the whole range to some value allowed?

For the purposes of monitoring any trades between these two currencies, in my understanding, whichever is the base asset and whichever is the quote one makes no difference, since one...

Just tried making a hack to make it work: ```cs #nullable enable using System; using System.Linq; using System.Reflection; using EntityFrameworkCore.Projectables.Infrastructure.Internal; using LinqToDB.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Query; using Microsoft.EntityFrameworkCore.Query.Internal; #pragma warning...

> @sdanyliv , it looks to me that `LinqToDBForEFTools.Implementation` assignment should trigger re-initialize, which is not possible with current code due to Lazy already triggered. No, sorry, it works. I...

> `DataOptions` already support bulk copy settings: > > ```cs > dataOptions.UseBulkCopyTimeout(123); > // or > dataOptions.BulkCopyOptions.WithBulkCopyTimeout(123); > ``` Well yeah, but that doesn't actually change it. You have to...

> You are not supposed to re-assign it. Check `AddCustomOptions` configuration extension example in [readme](https://github.com/linq2db/linq2db.EntityFrameworkCore#how-to-use) Like I mentioned, that's global, aka per context type. It doesn't allow configuring it per...

If wrapping the string is required (why would it? I'd rather not), the exception should say clearly what's wrong.

To workaround, you can wrap the strings, and then select them back again from the table. Of course, this does mean a bunch of garbage will be created for no...