How do you add named SQL Parameters in WebPages Framework?
var db = Database.Open("database");
var stories = db.Query("select * from story where category = @1", 545433);
I only see parameters such as the above code, they are numbers, I want them to have names, something like this:
var db = Database.Open("database");
var stories = db.Query("select * from story where category = @category");
But I don't know how, I googled it, read articles but found the numbered one. How can I add named SQL Parameters?