Anton Curmanschii

Results 37 issues of Anton Curmanschii

Consider the following code: ```typescript import {getType,Type} from "tst-reflect"; class A { s?: string | undefined; } console.log(getType().isUnion()); console.log(getType().getProperties().find(p => p.name == "s")!.type.isUnion()); ``` The first check works fine and...

bug
enhancement

There doesn't seem to be a way to set `BulkCopyTimeout` for example, on the whole context, rather than per operation, non-globally. The only way to configure it seems to be...

enhancement

The code below throws the exception ```Microsoft.Data.SqlClient.SqlException (0x80131904): Invalid object name 'String'.``` ```cs var values = Enumerable.Range(0, 100).Select(i => i.ToString()).ToArray(); await using var linq2dbContext = dbContext.CreateLinqToDBContext(); await using var tempTable...

I understand that this issue might be outside the scope and you might not care to support it. I'm trying to use the library in combination with [this](https://github.com/koenbeuk/EntityFrameworkCore.Projectables). It fails...

bug

I have a situation like this: - The main entity `A` which is stored in the Db and is registered with EF Core. The column names here are UPPER_SNAKE_CASE. -...

Trying to build a project using raylib with zig version ``` 0.12.0-dev.3193+4ba4f94c9 ``` Getting the following [error](https://pastebin.com/0BrgC4n5). As you can see the problem is that zig build now expects relative...

I have a custom binding for romanian letters for modes `c` and `i`. I need to hold down `alt` and then press `[` for it to print `ă` for example....

Symbol references may change on any source code changes. Having symbols in the model will make your source generator rerun on every key press. I mean [here](https://github.com/Flavien/quickconstructor/blob/554cfabcc1e607646674af8dfa84e5753c8cd4e1/src/QuickConstructor.Generator/QuickConstructorGenerator.cs#L41), which uses [this](https://github.com/Flavien/quickconstructor/blob/554cfabcc1e607646674af8dfa84e5753c8cd4e1/src/QuickConstructor.Generator/ConstructorDescriptor.cs#L37)...

If I define a base class with a manual constructor, as you'd normally do: ```cs public abstract class Base { private readonly object _value; public Base(object v) => _value =...

E.g. being able to specify the default options for null checks could be useful. I want to get rid of the autogenerated null checks in the constructor by default. I...