This is the - theoretically - simple statement I am having trouble with
Code: Select all
SELECT "PersonalNr", "Nachname" || ' ' || "Vorname" AS Loginname
FROM "public".personal
When I try to save a statement like that Visual Studio 2013 gives me the following error:
Code: Select all
Error in Select clause: expression near "|"
I assumed the parser has no idea about postgresql syntax at all. Does that mean I can't use strong typed DataTables with custom fields at all? Plain DataTables automatically derived from tables just work fine and the fact that the tableadapters generated that way require a Devart.Data.PostgreSql.PgSqlConnection instead of a normal SqlConnection object also tells me I can't be missing to use your driver at all.
Is this a known restriction? I am doing there something wrong? I mean, I can't find anything in the forum, I can't be the first person to try to concat string using ||... obviously I am doing something wrong. But what?
