Attempting to update my code to v8.9 and I’ve hit a potential issue (I’ve probably missed something)
I’m using the new AddOrmLite() configuration style, however I’m unable to use the dbFactory I would have usually returned using the old method.
GenerateCrudServices = new GenerateCrudServices
{
DbFactory = dbFactory,
AutoRegister = false,
}
When I remove the DbFactory property, I get the following error on runtime:
System.NotSupportedException: GenerateCrudServices.DbFactory is not configured
Thanks for your time.