Simon Slavin wrote: > On 12 Feb 2018, at 6:00pm, Istvan Heckl <istvan.he...@gmail.com> wrote: >> Because of this bug at the moment SQLite can not be used with Entity >> Framework if calculated columns are involved. > > SQLite does not have calculated columns.
I guess he means something like this (which works fine in plain SQLite): $ sqlite3 sqlite> create view v as select 1, 2+3, 4 as x; sqlite> .header on sqlite> .mode columns sqlite> select * from v; 1 2+3 x ---------- ---------- ---------- 1 5 4 But I doubt that System.Data.SQLite removes the result column names. Regards, Clemens _______________________________________________ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users