mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 17:59:14 +00:00
parent
17bf438cad
commit
9fae76015a
1 changed files with 2 additions and 1 deletions
|
@ -198,7 +198,8 @@ public RelationshipBuilder<TEntity> AutoMapComplexTypeProperties<T>()
|
||||||
{
|
{
|
||||||
return AutoMapPropertiesWhere(m =>
|
return AutoMapPropertiesWhere(m =>
|
||||||
m.MemberType == MemberTypes.Property &&
|
m.MemberType == MemberTypes.Property &&
|
||||||
!DataHelper.IsSimpleType((m as PropertyInfo).PropertyType));
|
!DataHelper.IsSimpleType((m as PropertyInfo).PropertyType) &&
|
||||||
|
!MapRepository.Instance.TypeConverters.ContainsKey((m as PropertyInfo).PropertyType));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue