Anton Curmanschii

Results 58 comments of Anton Curmanschii

And if you mean the csproj with the code I need code generation for, then I had already done that at the time of writing, as mentioned in the post

not right now

I guess that `` is defined in `c` mode implicitly, which cancels the command, so the following is a workaround I just discovered https://github.com/AntonC9018/nvim-config/blob/d00bde82a02ccf01b615c663a544dbbb8cfdf4d1/init.lua#L752-L776

Sure... Is there a way to change the buffer type telescope uses then? Because it's unintuitive imo that paste works in insert mode but not in normal mode, it just...

This requires a bit of an internal refactor as well. If we don't get the complete type passed into `Type`, we'll have to rewrite it later rather than find it...

> @MrDave1999 you probably need to enable logging on linq2db side, check [this](https://github.com/linq2db/linq2db.EntityFrameworkCore/issues/38#issuecomment-691538799). Otherwise provide your logging configuration code so we can examine what is missing. Regular EF Core queries...

Specifying a log action works, but we all know that's not a solution.

It's basically this: ```cs var host = Host.CreateDefaultBuilder(args) .ConfigureServices((hostContext, services) => { var connectionString = hostContext.Configuration .GetValue("Configuration:MainDatabaseConnectionString"); services.AddSqlServer(connectionString); }) .ConfigureAppConfiguration(builder => { builder.AddJsonFile("appsettings.json"); }) .Build(); LinqToDBForEFTools.Implementation = LinqToDbEfCoreImplWithProjectableSupport.Instance; LinqToDBForEFTools.Initialize(); DataConnection.TurnTraceSwitchOn();...