Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Convert.ToDateTime as a supported method for translation #1297 #1298

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,22 @@ public class NpgsqlConvertTranslator : IMethodCallTranslator
{
static readonly Dictionary<string, string> TypeMapping = new Dictionary<string, string>
{
[nameof(Convert.ToBoolean)] = "bool",
[nameof(Convert.ToByte)] = "smallint",
[nameof(Convert.ToDecimal)] = "numeric",
[nameof(Convert.ToDouble)] = "double precision",
[nameof(Convert.ToInt16)] = "smallint",
[nameof(Convert.ToInt32)] = "int",
[nameof(Convert.ToInt64)] = "bigint",
[nameof(Convert.ToString)] = "text"
[nameof(Convert.ToBoolean)] = "bool",
[nameof(Convert.ToByte)] = "smallint",
[nameof(Convert.ToDateTime)] = "timestamp with time zone",
[nameof(Convert.ToDecimal)] = "numeric",
[nameof(Convert.ToDouble)] = "double precision",
[nameof(Convert.ToInt16)] = "smallint",
[nameof(Convert.ToInt32)] = "int",
[nameof(Convert.ToInt64)] = "bigint",
[nameof(Convert.ToString)] = "text"
};

static readonly List<Type> SupportedTypes = new List<Type>
{
typeof(bool),
typeof(byte),
typeof(DateTime),
typeof(decimal),
typeof(double),
typeof(float),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
Expand Down Expand Up @@ -41,6 +41,18 @@ public override Task Where_math_log_new_base(bool async)
public override Task Convert_ToString(bool async)
=> base.Convert_ToString(async);

[ConditionalTheory]
[MemberData(nameof(IsAsyncData))]
public virtual async Task Convert_ToDateTime(bool async)
{
await AssertQuery(
async,
ss => ss.Set<Order>().Where(o => o.OrderDate == Convert.ToDateTime(o.OrderDate.ToString())),
entryCount: 830);

AssertContainsSqlFragment(@"WHERE (o.""OrderDate"" = CAST(CAST(o.""OrderDate"" AS text) AS timestamp without time zone)) OR (o.""OrderDate"" IS NULL)");
}

#region Substring

[ConditionalTheory]
Expand Down