I want to Execute a line of SQL which looks like this:
conn.Open();
var db = new PetaPoco.Database(conn);
var sql = "INSERT INTO FOO (name) VALUES ( 'foo@bar.com')";
var response = db.Execute(sql);
The problem is that PetaPoco thinks @bar is a parameter. Is there a way to tell it not to treat any @'s specially? My super lame work around was to replace "@" with "at". I live with this shame.