public bool GetIsComplexEntity(PropertyInfo propertyInfo)
 {
     return(ApplicationEntityTypes.Contains(propertyInfo.PropertyType));
 }
 public bool GetIsDynamicCollection(PropertyInfo propertyInfo)
 {
     return(_typeManager.IsCollection(propertyInfo.PropertyType) && ApplicationEntityTypes.Contains(_typeManager.CollectionType(propertyInfo.PropertyType)));
 }