Mysql and Subsonic 3 with LINQ: Cannot insert rows
- by Gustavo
I'm using Susbsonic 3 with the LINQ templates. I've already added a column called 'ID' to my Articles table. When I try to insert a row using the following code
var db = new LDB();
int newID = db.Insert.Into<ArticlesTable>
(
x => x.Description
…