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クエリがあります:
var product_view = from productallinfo in QProductAllInfo select productallinfo;
次に、データをテーブルにロードします
MainCatalog_Table.DataSource = product_view.Distinct();
次に、「ProductName」などの列名でデータを並べ替えます。
次のように、DataSource にバインドする前に並べ替えてみませんか。
var product_view = from productallinfo in QProductAllInfo orderby productallinfo.ProductName select productallinfo;
そして、それをデータソースにバインドします....