如何在使用Lambda查詢時避免空例外?在下面的代碼中,當InstallationDateType
爲空時,我得到一個異常。我如何解決這個問題?lambda WHERE子句中的空值
foreach (AvailableDate availableDate in installationDatesResponseRootObject.Response
.InstallationDatesResponse
.AvailableDates
.Where(a =>
a.InstallationDateType.ToString().ToUpper() == Constants.InstallationDateTypeDish))
{
//Do Something
}
你開始你的for循環 – RandomStranger
可能重複之前,您可以檢查它是否具有價值[什麼是一個NullReferenceException,以及如何解決?(HTTP:// stackoverflow.com/questions/4660142/what-is-a-nullreferenceexception-and-how-do-i-fix-it) – HimBromBeere