2

When using Visual Studio we can create a new item of type Linq to SQL classes (.dbml). After that we can drag and drop tables in the design view and manipulate them.

My question is: Can we use SQLite tables in the same way? Can we drag and drop them so VS can create the classes for us? If not is there a tool that can do that?

Thanks for your time.

  • 2
    possible duplicate of [LINQ with SQLite (linqtosql)](http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql) – Jon Skeet Jun 28 '11 at 09:34
  • @Jon Skeet: It seems that it is a duplicate because we can use DBLinq to create .dbml files. –  Jun 28 '11 at 10:07
  • 1
    Maybe use Entity Framework? Its Linq provider is supposed to be pretty solid against SqLite (or vice-versa :) ). – Merlyn Morgan-Graham Sep 21 '11 at 06:29

1 Answers1

0

We can generate .dbml files using the DBLinq from the chosen answer to this question.

Community
  • 1
  • 1