Gert Arnold
Gert Arnold
QueryFilter 1.7.15, EF 6.2.0, .Net 4.7 I'm a bit wary of complaining about this awesome piece of work, but I hope it will help make it even better. **tl;dr** `QueryFilterManager.AllowPropertyFilter...
On a SQL17 instance, Developer Edition (64-bit), we have a table with FILESTREAM columns. When `AzureSQLMaintenance` (current version) decides that its PK be rebuilt we get: >ALTER INDEX [PK_Medium] ON...
In .net, see the output of the following statements: ```c# new[] { default(int?), default(int?) }.Max() // => null new[] { default(int?), default(int?) }.Sum() // => 0 ``` And similar statements...