Skip to content

Commit

Permalink
Added missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkMpn committed Nov 29, 2021
1 parent 1be32ec commit a6ea8b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MarkMpn.Sql4Cds.SSMS/Sql2MCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ 4. Copy & paste in this query
*/
let
Source = CommonDataService.Database(""{server}"")
Source = CommonDataService.Database(""{server}""),
DataverseSQL = Value.NativeQuery(Source, ""{sql.Replace("\"", "\"\"").Replace("\r\n", " ").Trim()}"", null, [EnableFolding=true])
in
DataverseSQL";
Expand Down
2 changes: 1 addition & 1 deletion MarkMpn.Sql4Cds/PluginControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ 4. Copy & paste in this query
*/
let
Source = CommonDataService.Database(""{new Uri(sql.Connection.OriginalUrl).Host}"")
Source = CommonDataService.Database(""{new Uri(sql.Connection.OriginalUrl).Host}""),
DataverseSQL = Value.NativeQuery(Source, ""{sql.Sql.Replace("\"", "\"\"").Replace("\r\n", " ").Trim()}"", null, [EnableFolding=true])
in
DataverseSQL";
Expand Down

0 comments on commit a6ea8b7

Please sign in to comment.