DataTable testDataTable = GetDataTable();
List<string> testList = new List<string>();
testList = (from temp in testDataTable.AsEnumerable.ToList()
select temp["Column_Name"].ToString()).Distinct().ToList();
return testList;