Sieve/Sieve.Sample/appsettings.json
AnasZakarneh aaedf7a684
stop excluding null values when filtering using notEqual (#114)
* stop excluding null values when filtering using notEqual
* add IgnoreNullsOnNotEqual config field, to enable/disable the new feature

Co-authored-by: AnasZakarneh <a.zakarneh@foothillsolutions.com>
2021-05-24 19:24:18 +02:00

23 lines
398 B
JSON

{
"ConnectionStrings": {
"TestSqlServer": "Server=(localdb)\\MSSQLLocalDB; Database=SieveTests;"
},
"Sieve": {
"CaseSensitive": false,
"DefaultPageSize": 10,
"IgnoreNullsOnNotEqual": true
},
"Logging": {
"Debug": {
"LogLevel": {
"Default": "Warning"
}
},
"Console": {
"LogLevel": {
"Default": "Warning"
}
}
}
}