I'm building a small ASP.NET MVC site where I want to use SQLite. While I already know how I will be connecting to the database (using DbLinq), I don't understand how to put the ASP.NET tables generated by aspnet_regsql.exe
into an SQLite database.
I've used the regsql
tool before with SQL Server, but never with SQLite. How do I create them for the SQLite DB?
One strategy that I think might somehow work is:
- Use
aspnet_regsql.exe
to create the tables into an empty SQL Server database - Script all the objects in the database into T-SQL
- Apply the T-SQL to the SQLite DB (how?)