I am using DbExtensions/SqlBuilder.md for my project. And during connection I am getting following Error.
A default provider name must be provided using the 'DbExtensions:DefaultProviderName' key in the appSettings configuration section.
My ConnectionString is in Session object. Here is my Code.
Database db = new Database(HelperClass.ConnectionString);
Finally I got solution. Add key in Web.config file.
and it will work.