Skip to content

Commit 0f3eeb6

Browse files
committed
Adapt for breaking change in Entity Framework Core
Fix broken tests
1 parent bbdc90b commit 0f3eeb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Examples/NoEntityFrameworkExample/Data/InMemoryModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ private static void SetEntityProperties(RuntimeEntityType entityType, ResourceTy
1919
{
2020
foreach (PropertyInfo property in resourceType.ClrType.GetProperties())
2121
{
22-
entityType.AddProperty(property.Name, property.PropertyType, property);
22+
entityType.AddProperty(property.Name, property.PropertyType, propertyInfo: property);
2323
}
2424
}
2525
}

0 commit comments

Comments
 (0)