Jakub Konecki
Jakub Konecki
`EnumConverter` is internally using `Enum.Parse` method that assumes that the parsed value matches the name of the enum value. `System.Runtime.Serialization` has an `EnumMemberAttribute` (https://docs.microsoft.com/en-us/dotnet/api/system.runtime.serialization.enummemberattribute) that can be used to decorate...
https://github.com/SQLStreamStore/SQLStreamStore/blob/0de9102000f5f72e4f0ed5e1a3e89d10a922f2f6/src/SqlStreamStore/IAllStreamSubscription.cs#L20 The comment states that the value of `-1` represents the situation when nothing is processed. If so, what is the meaning of the `null`? Also, consider using `ulong` instead...
I would like to use MembershipReboot in a project that requires `BrockAllen.MembershipReboot.Hierarchical.HierarchicalUserAccount` to be binary serializable. Would you consider marking relevant classes with `Serializable` attribute? I can prepare a PR.
When batch inserting to CosmosDB Table API the error message returned doesn't include the index of the conflicting entity. The test below reproduces the issue (`cosmos_specifics.cs`) ``` [Test] public async...
The number of document to copy is calculated in `CosmosDBHelper.GetSourceRecordCount` in an invalid way. The code below ``` sourceTotalRecordCount = cosmosClient.CreateDocumentQuery( UriFactory.CreateDocumentCollectionUri(sourceDatabaseName, sourceCollectionName), totalCountQuery, queryOptions) .AsEnumerable().First(); ``` uses `First()` to...
I would like to suggest a new feature of Complete composition. I would like to create a new single Complete from a collection of Completes. This will support a fan-out...