This commit is contained in:
Wvader 2021-12-11 14:12:16 +00:00
parent 18f4ff408a
commit 2b0b03bb60
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ namespace MapTo.Extensions
foreach (var property in model.TypeProperties)
{
if (!model.TypeProperties.IsMappedProperty(property) || !model.SourceProperties.IsMappedProperty(property))
if (!model.SourceProperties.IsMappedProperty(property))
{
stringBuilder.Append(", ");
stringBuilder.Append($"{property.FullyQualifiedType} {property.SourcePropertyName.ToCamelCase()}");