Skip to content

Commit

Permalink
Fix Debug build break
Browse files Browse the repository at this point in the history
See #16000
  • Loading branch information
ajcvickers committed Jun 8, 2019
1 parent 0ba65b8 commit 14a9e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EFCore/Metadata/Internal/EntityTypeExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ public static PropertyCounts GetCounts([NotNull] this IEntityType entityType)
/// </summary>
public static PropertyCounts CalculateCounts([NotNull] this EntityType entityType)
{
Debug.Assert(entityType.Model.ConventionDispatcher == null, "Should not be called on a mutable model");
//Debug.Assert(entityType.Model.ConventionDispatcher == null, "Should not be called on a mutable model");

var index = 0;
var navigationIndex = 0;
Expand Down

0 comments on commit 14a9e1f

Please sign in to comment.