Hi,
I just updated to the latest version of OrmLite and noticed that Dapper has now moved to a different namespace and also Query<T> in OrmLite is now hanging directly IDbConnection (from IDbCommand).
There's a few places where I'm using Dapper's version of Query<T> like so:
result = dbConn.Query<string>("select [Email] from [Contacts]");
but now this is broken because it's trying to use OrmLite's version of Query<T> and it doesn't support string as the type because of the where T : new()
Is there any way I can use IDbConnection extensions from Dapper and OrmLite within the same file and force it to use Dapper's Query() instead?
Thanks.