Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet authored and roji committed Mar 11, 2019
1 parent c198b95 commit f990fa0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ public virtual void From_sql_queryable_simple_projection_composed()
@"SELECT *
FROM [Products]
WHERE [Discontinued] <> " + boolMapping.GenerateSqlLiteral(true) + @"
AND ((]UnitsInStock] + [UnitsOnOrder]) < [ReorderLevel])"))
AND (([UnitsInStock] + [UnitsOnOrder]) < [ReorderLevel])"))
.Select(p => p.ProductName)
.ToArray();

Expand Down

0 comments on commit f990fa0

Please sign in to comment.