Zumero Xamarin コンポーネントを使用しようとしていますが、コンパイラ エラーが発生します。
The type 'System.Data.Common.DbConnection' is defined in an assembly that is not referenced.
コンポーネントをプロジェクトに含め、次のコードを追加しました。
using System.Data.SQLite;
と
string personalFolder = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
string dbName = "pitches.db";
string dbPath = Path.Combine ( personalFolder, dbName);
var conn = new SQLiteConnection ("Data Source=" + dbPath);
conn.Open ();
conn.ZumeroRegister();