I am using system.data.sqlite for in memory testing, and i wanted to know if any of you got a link or knowledge for a open source project that simply create database and tables ?
For example :
InMemoryDB db = new InMemoryDB();
Table t = new Table("myTable");
t.Add(new Coloum("Uid",DbType.VarChar,PrimeryKey = true));
db.Add(t);
or even a better idea ?