Doug Gish
Doug Gish
For MSSQL, I would suggest using nvarchar instead of varchar for unicode character support. Messages/events might contain names, etc. that could be in different languages. See https://docs.microsoft.com/en-us/sql/relational-databases/collations/collation-and-unicode-support?view=sql-server-ver15#unicode-data-types
+1 It seems like Swagger UI try it out feature should let the user select which media types to send in the Accept header from any of the media types...
I ran into the same issue. For now I'm using this work-around: ```C# builder.Services.AddSwaggerGen(options => { options.MapType(() => new OpenApiSchema { Type = "string", Example = new OpenApiString("00:00:00") }); });...
We upgraded to .NET 6 from .NET Core 3.1 and see this very frequently now when running within a linux docker container.
I think this might be related to #1178
I just ran into this same issue. I see IMultiTenantContextSetter is documented as an "implementation detail". Is there any plan to expose this functionality for general use? We are using...
This might not work cleanly since EntityFramework doesn't follow the options pattern
I also ran into this. This code seems wrong: https://github.com/JamesNK/Newtonsoft.Json/blob/55a7204f9b9546aa07145591d42046d509176ad4/Src/Newtonsoft.Json/Converters/IsoDateTimeConverter.cs#L88 When used on a DateTime with a Kind of Unspecified, the ToUniversalTime() method assumes the time is a local time,...
Thanks for the PR! @cer, is there anything that needs to be done (perhaps a CLA or something) before we can accept this PR?