Skip to content

Commit

Permalink
IGNITE-18773 .NET: Document LINQ features (apache#1668)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptupitsyn authored and lowka committed Mar 18, 2023
1 parent 5fbec45 commit 8aae53d
Show file tree
Hide file tree
Showing 3 changed files with 484 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public void TestNumericFunctions()
TestOpDouble(x => Math.Tanh(x.Key / 10), 0.71629787019902447d, "select Tanh((_T0.KEY / ?)) from");
TestOpDouble(x => Math.Atan(x.Key), 1.4601391056210009d, "select Atan(_T0.KEY) from");
TestOpDouble(x => Math.Ceiling(x.Key / 3), 3.0d, "select Ceiling((_T0.KEY / ?)) from");
TestOpDouble(x => Math.Floor(x.Key / 3), 3.0d, "select Floor((_T0.KEY / ?)) from");
TestOpDouble(x => Math.Exp(x.Key), 8103.0839275753842d, "select Exp(_T0.KEY) from");
TestOpDouble(x => Math.Log(x.Key), 2.1972245773362196d, "select Ln(_T0.KEY) from");
TestOpDouble(x => Math.Log10(x.Key), 0.95424250943932487d, "select Log10(_T0.KEY) from");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Apache Ignite LINQ provider
# Apache Ignite LINQ provider - Development Notes

Translates C# LINQ expressions into Ignite-specific SQL.

Expand Down
Loading

0 comments on commit 8aae53d

Please sign in to comment.