Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriySvyryd committed Mar 27, 2024
1 parent 8048cab commit 031507c
Show file tree
Hide file tree
Showing 4 changed files with 196 additions and 143 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using Microsoft.CodeAnalysis.Editing;
using Microsoft.EntityFrameworkCore.ChangeTracking.Internal;
using Microsoft.EntityFrameworkCore.Design.Internal;
using Microsoft.EntityFrameworkCore.Internal;
using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory;

namespace Microsoft.EntityFrameworkCore.Query.Internal;
Expand Down Expand Up @@ -127,7 +128,7 @@ protected override void TranslateNonPublicMemberAssignment(MemberExpression memb
{
if (assignmentKind is not SyntaxKind.SimpleAssignmentExpression)
{
throw new NotSupportedException("Compound assignment not supported");
throw new NotImplementedException("Compound assignment not supported yet.");
}

Result = InvocationExpression(
Expand Down
Loading

0 comments on commit 031507c

Please sign in to comment.