Hi,
I am trying to run a small unit test to add a record to a MySql table using .Net Core 2 - I am using the latest version of LLBL
As per your guide I have purchased a copy of the Devart Standard and have received my activation code etc
I have included the Devart.Data.MySql nuget package in my test project and have made sure I have included the license key in the connection string like this
Server=localhost;Database=kz_unittest_001;User ID=root;Password=blahblahblah;License Key=gbk0KLenlFJ3c8ll1WYRd4n8ga.............etc;
However when I try to commit my entity to the database I get the following error thrown by LLBLGen
SD.LLBLGen.Pro.ORMSupportClasses.ORMConfigurationException: 'No DbProviderFactory has been configured for this DQE. You have to use the DQE configuration system to register at least one DbProviderFactory.'
I have a repository project that I have included as a dependency to the unit test project and the repository project itself references the 2 projects (Generic and Specific) that are generated by LLBLGen and both target the .Net Standard 2.0 framework
Obviously .NET Core does not use DBProviderFactory so I assume somehow I have not configured something correctly
Can you help?