Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dapper.FastCrud/Mappings/AutoGeneratedEntityMapping.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private IEnumerable<EntityRelationshipRegistration> DiscoverParentChildrenRelati
// this can be in the form of:
// 1. as a marked property of the same type decorated with an InversePropertyAttribute pointing back to our nav property (can even be an entity and not a collection for one-to-one relationships)
// 2. an unmarked property of type IEnumerable<> OR
var parentChildrenPropGroups = TypeDescriptor.GetProperties(entityType)
var parentChildrenPropGroups = OrmConfiguration.Conventions.GetEntityProperties(entityType)
.OfType<PropertyDescriptor>()
.Select(prop =>
{
Expand Down