We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3adb74b + 9e80533 commit 57f7f78Copy full SHA for 57f7f78
README.md
@@ -32,12 +32,8 @@ pqnet helloworld.pq
32
2. Run the following:
33
```txt
34
var qry = new Query { Formula = "let hw = \"Hello World\" in hw" };
35
-var req = new ExecuteRequest();
36
-req.Queries.Add(qry);
37
-req.ExecuteOutputFlags = ExecuteOutputFlags.DataTable;
38
-var pqc = new PowerQueryCommand();
39
-var result = pqc.Execute(req);
40
-DataTable dt = result.DataTable;
+var pqc = new PowerQueryCommand() { ExecuteOutputFlags = ExecuteOutputFlags.Csv };
+var result = pqc.Execute(qry);
41
```
42
## Power Query App
43
Run queries in a standalone application
0 commit comments