SQLite.Net を使用して Visual Studio のコンソール アプリケーションを使用してアプリのコア ロジックを構築しました。
using System.Data.SQLite;
に
using Mono.Data.Sqlite.dll
このプロセスは、他のコンポーネント (Json.Net など) に対して完全に機能しています。
ただし、2 つの Sqlite dll (SQL と 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();
グローバルな検索と置換で修正するのは簡単ですが、環境を切り替えるたびにそうしなければならないのは少し面倒です。誰でも解決策を提案できますか?