Reputation: 6527
I'm using QuickBooks connector in class library. And accessing class library from console app. I'm getting this error when try to add new DbSet item to context:
The ADO.NET provider with invariant name 'System.Data.RSSBus.QuickBooks'
is either not registered in the machine or application config file,
or could not be loaded. See the inner exception for details.
How I can solve it? Shall I register this provide in app.config file somehow?
Upvotes: 0
Views: 49
Reputation: 3097
The ADO.NET provider with invariant name 'System.Data.RSSBus.QuickBooks' is either not registered in the machine
I guess so far you just got the NuGet package. In several cases, when working with ADO.NET providers you have to install them on your machine via a regular setup file (.MSI or whatever). I think the one you are looking for can be downloaded from here.
Here you will find a commercial one, in theory optimized for Entity Framework.
Upvotes: 1