Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道全局处理“参数字典包含参数 x 的空条目”错误的最佳方法。
我意识到我总是可以将参数设置为nullable type并使用它们的HasValue属性来测试它们。
nullable type
HasValue
我宁愿找到更通用的方法。
有任何想法吗?
这不完全是一种全局方法,但是如果您的操作参数具有合理的默认值,为什么不尝试将它们设为可选参数呢?例如 :
public ActionResult Index(int id = 0, string name = "user") { ... }