Andreas Niedermair
Andreas Niedermair
Hi there! I'd like to insert 10k rows to couchdb, and therefore I am using the bulk API: ```csharp var entities = /**/; var docs = entities.Select(myCouchClient.DocumentSerializer.Serialize).ToArray(); var bulkRequest =...
Giving following .ini-file and class: ```ini [FOO] SETTING= ``` ```csharp public class FOO { public string? SETTING { get; set; } } ``` Reading the file with [3.2.9.1](https://www.nuget.org/packages/sharpconfig/3.2.9.1), which was...
I tried to use the following construct and expected that the connectionString will contain a `Jet OLEDB:Database Password`-section ``` JetDriverConfiguration.Standard.ConnectionString(arg => arg.DatabaseFile("foo") .Password("foo")); ``` This was not the case, so...
With SQLite 3.37.0 the [type affinity](https://www.sqlite.org/datatype3.html) of SQLite got enhanced by [STRICT Tables](https://www.sqlite.org/stricttables.html). Any chance to opt-in?
With SQLite 3.8.2 [WITHOUT ROWID](https://www.sqlite.org/withoutrowid.html) got introduced. Any chance to opt-in?
https://github.com/vvvv/SVG/blob/master/Source/SvgElement.cs#L383 ```csharp get { return GetAttribute("transform", false); } ``` Which forwards to https://github.com/vvvv/SVG/blob/master/Source/SvgElement.cs#L299 `SvgAttributeCollection.GetAttribute` and `SvgAttributeCollection.GetInheritedAttribute` return `null`, which - in the end - violates best practice (a collection should...
Hi there! Following DTO given: ```csharp public interface IFoo { } public sealed record FooA : IFoo { } public sealed record FooB : IFoo { } public sealed record...
Hi there, ```xml 0.27.0 ``` I am unsure whether it occurs on receiver's or sender's site: ``` Class: Makaretu.Dns.MulticastService Method: Void OnDnsMessage(System.Object, System.Net.Sockets.UdpReceiveResult) Level: ERROR Logger: Makaretu.Dns.MulticastService Message: Receive handler...
### Overview French has a specific translation for bytes (octet) which should be reflected in [Converters.ToFileSizeString](https://github.com/CommunityToolkit/dotnet/blob/main/CommunityToolkit.Common/Converters.cs#L17). Even though "byte" might be correct, our client reports that "octet" is more common....
https://github.com/dittodhole/dotnet-Svg.Contrib.Render/blob/9308b5c5f793d1b5531529056f740367a33d5ce2/src/Svg.Contrib.Render.FingerPrint/SvgImageTranslator.cs#L92 but has the functionality implemented ... wtf ???