Skip to content

Commit

Permalink
Using not readonly stuct with in modifier (#24750)
Browse files Browse the repository at this point in the history
  • Loading branch information
SergerGood authored Apr 27, 2021
1 parent 526afcf commit c375551
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/EFCore/Metadata/Internal/InternalEntityTypeBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3198,7 +3198,7 @@ private static InternalIndexBuilder DetachIndex(Index indexToDetach)
private InternalForeignKeyBuilder? HasOwnership(
in TypeIdentity targetEntityType,
in MemberIdentity navigation,
in MemberIdentity? inverse,
MemberIdentity? inverse,
ConfigurationSource configurationSource)
{
InternalEntityTypeBuilder? ownedEntityTypeBuilder;
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/ShapedQueryCompilingExpressionVisitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ private Expression MaterializeEntity(

private BlockExpression CreateFullMaterializeExpression(
IEntityType concreteEntityType,
in (Type ReturnType,
(Type ReturnType,
ParameterExpression MaterializationContextVariable,
ParameterExpression ConcreteEntityTypeVariable,
ParameterExpression ShadowValuesVariable) materializeExpressionContext)
Expand Down

0 comments on commit c375551

Please sign in to comment.