You can get the values from a named column in the
DataTable
using a single line of code in LINQ.
Steps:
- Convert the
DataTable
object to Enumerable()
.
- Apply the
select
clause with the column name as field name. - Cast it to a
string
array.
string[] strSummCities = dtTemp1.AsEnumerable().Select(s => s.Field<string>("City")).ToArray<string>();
Software developer by profession, working for a service and product based organisation in India.
Career graph:
Software Programmer since 2002.
Web Developer in ASP.NET since 2004.
Interests:
I love reading the blogs and articles of technology experts. I love codeproject and stackoverflow .
I love to share knowledge and help the programmers. I appreciate if some body corrects my code or my concepts which helps me learn.