Does Microsoft Jet DB work with Entity Framework?
问题 In this forum here , someone mentions that Entity Framework does not work with Access (Jet DB - .mdb). However it seems that there is a provider for Jet DB as described here Which makes me think that the only thing I need with Entity Framework is to define the follwing before I define the models: <connectionStrings> <add name="ProductContext" providerName="Microsoft.Jet.OLEDB.4.0" connectionString="Source=C:\mydatabase.mdb;Jet OLEDB:Database Password=MyDbPassword;"/> </connectionStrings> Does