diff --git a/LINQ/test/query.linq b/LINQ/test/query.linq index 62f43c0..9651f15 100644 --- a/LINQ/test/query.linq +++ b/LINQ/test/query.linq @@ -1,4 +1,4 @@ -FROM x AS row +FROM x as row IN "E:\GCModeller\src\runtime\Darwinism\LINQ\test\data.csv" WHERE x.PeakQuality >= 0.999 SELECT x.LipidIon, diff --git a/LINQ/test/sqlite.linq b/LINQ/test/sqlite.linq index a5b16bd..a1a93ae 100644 --- a/LINQ/test/sqlite.linq +++ b/LINQ/test/sqlite.linq @@ -1,2 +1,6 @@ imports "Sqlite3" +FROM x as table("GenePathways") +IN "E:\GCModeller\src\runtime\Darwinism\LINQ\test\xcc.db" +WHERE x.pid = 11 +ORDER BY x.gid \ No newline at end of file diff --git a/LINQ/test/xcc.db b/LINQ/test/xcc.db new file mode 100644 index 0000000..0c0ffd1 Binary files /dev/null and b/LINQ/test/xcc.db differ