我有一個SelectDownList的DropDownList。我必須根據某些條件進行過濾。如果我嘗試添加條件,那麼它會給我一個這樣的錯誤(LINQ to Entities不能識別方法'System.String ToString()'方法,並且此方法不能轉換爲存儲表達式)。我將在這裏添加該代碼。請指導我解決這個問題。使用某些條件篩選SelectListItem值
代碼
IEnumerable<SelectListItem> IssueId = (from txt in Db.Issues where txt.BibId == BibId
select new SelectListItem()
{
Text = txt.Description,
Value = txt.Id.ToString(),
Selected = true,
});
SelectList IssueIds = new SelectList(IssueId, "Value", "Text");
ViewBag.IssueId = IssueIds;
感謝
那麼錯誤是什麼? 「有些錯誤」沒有告訴我們什麼。幫助我們來幫助你。 –
我更新了我的問題。 – Dheyv