Is there a way with Simple.Data to add a column to a query where the column will just contain some constant? For example it would be similar to this query:
SELECT Name, 'Unpaid' AS Status FROM table;
I would like to do something similar to the 'Unpaid' part in this query.