Export Dynamic LINQ to CSV
LINQ allows to perform various queries against different data structures. Wouldn’t it be great if you could easily export result of a LINQ query to CSV? Fortunately you can! This article by Scott Hanselman explain how and culminates in cool in its simplicity code: This code adds .ToCsv() extension method to any IEnumerable so you […]