My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Wiki pages
Links

Linq to Excel

Retrieve data from Excel spreadsheets using LINQ.

var excel = new ExcelQueryFactory("excelFileName");
var indianaCompanies = from c in excel.Worksheet<Company>()
                       where c.State == "IN"
                       select c;

Download the current version or install the NuGet package.

Go to the UsingLinqToExcel page for information on implementing Linq to Excel in your project.

Need help? Report an issue or send questions to the discussion group.


Demo Video

Powered by Google Project Hosting