Sqlite extensions missing method exception

Issue #66 resolved
Rikki Tooley created an issue

Hi,

I'm prototyping a .NET 4.5.1 server side component with Nancy and SQLite, developing on Windows 10 and aiming to deploy on Ubuntu with Mono. I am hoping to use SQLiteExtensions to speed everything up.

This is my connection

var db = new SQLiteConnection(new SQLitePlatformGeneric(), filePath, flags)

With the connection, this line throws "MissingMethodException"

db.InsertWithChildren(item);

Using these NuGet packages - SQLite.Net-PCL 3.0.5 - SQLiteNetExtensions 1.2.3

I then copy sqlite3.dll into the output directory after build. My solution is set to build with x86.

MissingMethodException usually means a clean and rebuild, but that doesn't seem to help.

What am I doing wrong?

Comments (2)

  1. Guillermo GutiƩrrez

    You have to downgrade to SQLite.Net-PCL 2.X , the API has changed in 3.0 and I haven't adapted SQLiteNetExtensions yet

  2. Log in to comment