1

I would like to know what is the simplest way to fetch and add data from an Access database using C#?

LINQ doesn't work and the Entity frame doesn't work. Is there a simpler way then having to write a entire OleDbConnection/OleDbCommand/OleDbDataReader?

GEOCHET
  • 21,119
  • 15
  • 74
  • 98
user346443
  • 4,672
  • 15
  • 57
  • 80
  • question is resolved here: http://stackoverflow.com/questions/295772/query-microsoft-access-mdb-database-using-linq-and-c-sharp – skub Mar 05 '12 at 04:00

1 Answers1

0

have a look at LINQ to ODBC providers or even LINQ to JET/OLEDB provider. Have a look at the following existing solution (although Alinq is known to have a few issues/dodgyness):

Or another option if you are keen then just create your own:

skub
  • 2,266
  • 23
  • 33