I've been using ES almost exclusively with SQL Server 2005, but I have a module that must use an existing access db.
I have no problem reading. I do have a problem with inserts. I tried to add a record using standard ES syntax. When the code runs, no record is added, no exceptions are thrown, the code just acts like it worked. Except looking at the table, no record is added. The access db has a primary field that is a Guid. When I tried it as autoinc, it worked as expected.
Code:
MailingListCollection mlc = new MailingListCollection();
MailingList ml = mlc.AddNew();
ml.Person = tbName.Text;
ml.Email = tbEmail.Text;
mlc.Save();
Mike