shokurov
shokurov
Thanks for pointing out! This definitely needs a bit more documentation.. Please, could you clarify couple more things: 1. do components have to utilise React or is it just convenience...
> For the Style element, you can find the docs here: https://heml.io/docs/elements/style/ You use it just like a regular HTML style tag. Thank you. I think I mixed it up,...
I have been able to get rid of the error by adding ```xml ``` to my .csproj
We were able to resolve it with custom compiler, like this: ```c# public class PostgresCompiler : global::SqlKata.Compilers.PostgresCompiler { public PostgresCompiler(bool wrapIdentifiersInQuery) { WrapIdentifiersInQuery = wrapIdentifiersInQuery; } public bool WrapIdentifiersInQuery {...
I second that. In our company the standard target for all __libraries__ is netstandard2.0, while the __executables__ may be multitarget (net6, net8), or single target. Having SqlKata 4 targeted solely...