Anton Curmanschii
Anton Curmanschii
My use case is that I want to effectively add an alias for a member. So here for example I add an `Id` property which just points to `DocumentId`. I...
`link_to_file.md#Text` doesn't work, while `link_to_file.md` works file
I'm not completely sure if it's a bug, or it's like this by design, but it certainly feels strange to me. Say, I inject a parameter via a custom `ModelBinder`...
My problem is that I want to be able to propagate metadata managed by EF Core (for example, `MaxLength` which can be looked up through `IModel`) all the way to...
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...
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...