Alexander Turtsevich

Results 50 comments of Alexander Turtsevich

There are features like `AsyncLocal` which can be user to make implicit context, it is helpful when you deal with UI tests for example but you can not use `AsyncLocal`...

@JanKallman, it does not seem to be fixed in 7.0.8, maybe you meant 7.0.9?

``` at System.Environment.get_StackTrace() at Microsoft.IO.RecyclableMemoryStream..ctor(RecyclableMemoryStreamManager memoryManager, Guid id, String tag, Int64 requestedSize, Byte[] initialLargeBuffer) in /_/src/RecyclableMemoryStream.cs:line 256 at OfficeOpenXml.Utils.RecyclableMemory.GetStream() at OfficeOpenXml.OfficeProperties.GetXmlDocument(String startXml, Uri uri, String contentType, String relationship) at OfficeOpenXml.OfficeProperties.get_CustomPropertiesXml()...

The same problem on Ubuntu 22.04 when using `-process-id`. The same output, same sockets in /tmp, etc.

@seesharper, could you please give an advice?

@seesharper, I wish I could migrate to net6.0, but it is almost impossible to update all our dependencies at once within limited timeframe (as always), so I started with the...

@seesharper, alright, this is example project: https://github.com/kemsky/lightinject-aspnet-core

@seesharper, hi, did you have a chance to look at it?

@JeanMeche, 1. some validator directives are always imported, like `required`, if I want to use my custom `required` validator I have to choose a different name (bad) or have two...

@sdanyliv, translator works but query fails. Output (slightly more complicated model, User > UserDepartment -> Department): ```csharp var test1 = await Context .WithLinqToDb() .Query() .Where(x => x.Id == 053) .Select(x...