Tim Stowell wrote:
>
> var dbConnection = new SQLiteConnection(
> "Data Source=db;provider=System.Data.SQLite.Linq;");
> var context = new DataContext(dbConnection);
> 

The SQLiteConnection class has no "provider" connection string
property.  Also, the DataContext class appears to be part of
the LINQ-to-MSSQL feature.

You probably want to use the ObjectContext class.

--
Joe Mistachkin

Reply via email to