我有一個列表AllIDs
:什麼是錯在這LINQ查詢,獲得編譯錯誤
List<IAddress> AllIDs = new List<IAddress>();
我想要做的基於角色的成員場AddressId
substring
操作「_」。
我使用下面的LINQ查詢,但得到的編譯錯誤:
AllIDs= AllIDs.Where(s => s.AddressId.Length >= s.AddressId.IndexOf("_"))
.Select(s => s.AddressId.Substring(s.AddressId.IndexOf("_")))
.ToList();
錯誤:
Cannot implicitly convert type 'System.Collections.Generic.List<string>' to 'System.Collections.Generic.List<MyCompany.Common.Users.IAddress>'
但問題是我想提供結果列表作爲下拉的數據源。結果列表沒有屬性AddressID。 – user1740172