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

Translate x.parse #28337

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Expand Up @@ -815,6 +815,54 @@ public override async Task Convert_ToString(bool async)
AssertSql();
}

public override async Task Byte_Parse(bool async)
{
// Cosmos client evaluation. Issue #17246.
roji marked this conversation as resolved.
Show resolved Hide resolved
await AssertTranslationFailed(() => base.Byte_Parse(async));

AssertSql();
}

public override async Task Decimal_Parse(bool async)
{
// Cosmos client evaluation. Issue #17246.
await AssertTranslationFailed(() => base.Decimal_Parse(async));

AssertSql();
}

public override async Task Double_Parse(bool async)
{
// Cosmos client evaluation. Issue #17246.
await AssertTranslationFailed(() => base.Double_Parse(async));

AssertSql();
}

public override async Task Short_Parse(bool async)
{
// Cosmos client evaluation. Issue #17246.
await AssertTranslationFailed(() => base.Short_Parse(async));

AssertSql();
}

public override async Task Int_Parse(bool async)
{
// Cosmos client evaluation. Issue #17246.
await AssertTranslationFailed(() => base.Int_Parse(async));

AssertSql();
}

public override async Task Long_Parse(bool async)
{
// Cosmos client evaluation. Issue #17246.
await AssertTranslationFailed(() => base.Long_Parse(async));

AssertSql();
}

public override async Task Indexof_with_emptystring(bool async)
{
await base.Indexof_with_emptystring(async);
Expand Down
Expand Up @@ -39,6 +39,24 @@ public override Task Convert_ToInt64(bool async)
public override Task Convert_ToString(bool async)
=> AssertTranslationFailed(() => base.Convert_ToString(async));

public override Task Byte_Parse(bool async)
=> AssertTranslationFailed(() => base.Byte_Parse(async));

public override Task Decimal_Parse(bool async)
=> AssertTranslationFailed(() => base.Decimal_Parse(async));

public override Task Double_Parse(bool async)
=> AssertTranslationFailed(() => base.Double_Parse(async));

public override Task Short_Parse(bool async)
=> AssertTranslationFailed(() => base.Short_Parse(async));

public override Task Int_Parse(bool async)
=> AssertTranslationFailed(() => base.Int_Parse(async));

public override Task Long_Parse(bool async)
=> AssertTranslationFailed(() => base.Long_Parse(async));

public override Task Projecting_Math_Truncate_and_ordering_by_it_twice(bool async)
=> AssertTranslationFailed(() => base.Projecting_Math_Truncate_and_ordering_by_it_twice(async));

Expand Down