المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : how to customize datatable.Select



C# Programming
06-13-2013, 11:39 AM
I am writing a windows desktop application in C# 2008 and i wanna to have select for datatable :
IEnumerable idsInA = dtd.AsEnumerable().Select(row => (string)row["ID"]);it filters only on one row (ex.ID) but the thing i wanna is for three rows (ex:ID , Title , Path)
Ho i can do that ?