@ -37,7 +37,7 @@ namespace Volo.Abp.ObjectExtending
public static string GetInputFormatOrNull(this IBasicObjectExtensionPropertyInfo property)
{
var formatString = property.GetDataFormatString();
var formatString = property.GetDataFormatStringOrNull();
if (!formatString.IsNullOrWhiteSpace())
@ -34,7 +34,7 @@ namespace Volo.Abp.ObjectExtending
.FirstOrDefault()?.DataType;
}
public static string GetDataFormatString(this IBasicObjectExtensionPropertyInfo property)
public static string GetDataFormatStringOrNull(this IBasicObjectExtensionPropertyInfo property)
return property
.Attributes