I am trying to send some data from a LINQ query in C# to an Excel speed sheet using OLE
I have a query like this:
Var data = from d in db.{MyTable}
where d.Name = "Test"
select d;
I have the Excel OLE object working fine, I just can't figure out how to populate the cells in Excel with the data from the LINQ query.
PS: I am using Excel 2003 if that makes any difference.
Can anyone help me with this?