We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a8a283 commit ba00854Copy full SHA for ba00854
Source/Clients/DotNET/Projections/ModelBound/FromDefinitionExtensions.cs
@@ -166,13 +166,13 @@ internal static void AutoMapMatchingProperties(this FromDefinition fromDefinitio
166
{
167
var modelPropertyPath = new PropertyPath(modelProperty.Name);
168
var modelPropertyName = namingPolicy.GetPropertyName(modelPropertyPath);
169
-
+
170
// Skip if the property already has an explicit mapping (including operation mappings)
171
if (fromDefinition.Properties.ContainsKey(modelPropertyName))
172
173
continue;
174
}
175
176
var eventPropertyPath = new PropertyPath(eventProperty.Name);
177
fromDefinition.Properties[modelPropertyName] = namingPolicy.GetPropertyName(eventPropertyPath);
178
0 commit comments