我想將這個查詢的結果返回到我可以用來填充SelectList的東西。我嘗試了一個NameValueCollection和一個IEnumerable,但都失敗了。如何從此Linq查詢填充SelectList?
給出此代碼的選項是什麼?此代碼不起作用,但查詢正是我想要的。
public IEnumerable GetValidAssociationsForSelectList()
{
var associations = (from a in context.Associations
join u in context.Units on a.AssociationKey equals u.AssociationKey
where a.CCRRecording != null && a.CCRRecording.ToString() != ""
orderby a.LegalName
select new { a.AssociationKey, LegalName = a.LegalName.Replace("'", "") }).Distinct();
}