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.
基本的にデータを配列にロードしてからリストボックスにロードするLINQクエリがあります。これはうまくいきます。しかし、私が今やりたいことは、明確に選択することだけです。以前にSQLでこれを行ったことがありますが、linqでは機能しません。
提案をありがとう。
items = table .Where(row => row.author != "") .Take(150) .ToCollectionView();
Distinctメソッドを使用...
例えば
query.Distinct().ToList();