Jonathan Allen
Jonathan Allen
### Bug Description RepoDB 1.12.9 with RepoDb.SqlServer 1.1.4 will throw MissingFieldsException if a sort column doesn't exist. RepoDB 1.12.10 with RepoDb.SqlServer 1.1.5 will pass the invalid sort column to the...
It appears that some Mongoose Traveller 2 trade codes are missing. Specifically High Technology, Low Technology, and Garden.
Currently we have to write this: ``` var fileOption = new Option( name: "--file", description: "The mdp-accelerator file to use."); rootCommand.AddOption(fileOption); ``` With a minor change to the API, we...
## Description There are times when we want to capture multiple assertions at the same time. For example, checking a set of properties for equality. Assert.AreEqual(key, echo.EmployeeClassificationKey); Assert.AreEqual(row.EmployeeClassificationName, echo.EmployeeClassificationName); Assert.AreEqual(row.IsEmployee,...
Calls to `ValueTuple.Create` can be simplified to just parens. Example: m_Base.TryGetValue(ValueTuple.Create(key1, key2), out value); return m_Base.Remove(ValueTuple.Create(key1, key2)); Simplified version m_Base.TryGetValue((key1, key2), out value); return m_Base.Remove((key1, key2));
The "Project Type" drop-down has a `(i)` button, but it doesn't actually do anything. Nor is there any other descriptions for the different project types on the page. The information...
At over 60 MB on disk, the RAMLGen Console download is rather large and awkward, especially when you need to check it into source control in order to support compliance...
Now that .NET's MSMQ drivers have been open-sourced, are there plans to incorporate NetMsmqBinding? ref: https://github.com/microsoft/referencesource/pull/141
If sorting by a nullable string, `$skiptoken` may contain a null value. This causes an exception show below. Example URL: ``` https://localhost:44322/odata/TransactionExceptionDetails?$select=TxnId%2CContactCity%2CContactState&$orderby=ContactCity%2CTxnId&$skiptoken=ContactCity-null,TxnId-12005 ``` Note the use of `$orderby=ContactCity%2CTxnId` and `$skiptoken=ContactCity-null,TxnId-12005`....
The `SnowflakeDbConnectionStringBuilder ` class should have strongly typed properties that match the list of properties listed here: https://github.com/snowflakedb/snowflake-connector-net#create-a-connection