LINQ with SQLite (linqtosql)

前端 未结 9 1912
轮回少年
轮回少年 2020-11-28 03:30

I have a small project that require a storage (I choose SQLite) and I got good result with the ADO DLL for .Net for Sqlite.

After the Install, I noticed that it conta

9条回答
  •  星月不相逢
    2020-11-28 03:57

    LINQ to SQL only supports SQL Server/Compact however it is possible the SQLite people have written their own LINQ provider given the name of the assembly.

    If that's the case you would be able to use the LINQ query syntax by adding a reference to it but you wouldn't get LINQ to SQL specific features such as the DataContext/designer/SQL Metal/Column attributes/EntitySet/EntityRef etc.

提交回复
热议问题