I built the main logic for my application using the console application in Visual Studio using SQLite.Net, I thought that I would just be able to disable the using statement from
using System.Data.SQLite;
to
using Mono.Data.Sqlite.dll
This process works great for other components (e.g. Json.Net).
However, I find differences in the casing between the two Sqlite dlls (SQL and Sql).
System.Data.SQLite
SQLiteCommand command = new SQLiteCommand(sql, DbConnection); SQLiteDataReader reader = command.ExecuteReader();
Mono.Data.Sqlite
SQLiteCommand command = new SQLiteCommand(sql, DbConnection); SQLiteDataReader reader = command.ExecuteReader();
Itβs easy enough to fix with global find and replace, but itβs a little annoying every time I switch between environments to do this. Can anyone suggest a solution?
source share