英文:
Value is always true, even if false
问题
/*****For Local setup****/
var isLocal = _configuration.GetValue<bool>("IsLocalEvn");
if (isLocal)
return isLocal;
英文:
/*****For Local setup****/
var isLocal = _configuration.GetValue<bool>("IsLocalEvn");
if (isLocal)
return isLocal;
This is always returning true even if the value in appsettings is false
From appsettings.json
"IsLocalEvn": "false",
答案1
得分: 4
你可以在JSON文件中使用boolean类型。
"IsLocalEnv": false,
在你的情况下,你使用了一个string值,当它被转换为boolean时会被解释为true
。
英文:
You can use the boolean type inside the JSON file.
"IsLocalEvn": false,
In your case, you are using a string value which is interpreted as true
when it's converted to a boolean
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论