mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
Update codefirst support json&array
This commit is contained in:
@@ -272,6 +272,14 @@ namespace SqlSugar
|
|||||||
string propertyTypeName = GetPropertyTypeName(item);
|
string propertyTypeName = GetPropertyTypeName(item);
|
||||||
PropertyText =this.PropertyTextTemplateFunc == null? GetPropertyText(item, PropertyText):this.PropertyTextTemplateFunc(item,this.PropertyTemplate, propertyTypeName);
|
PropertyText =this.PropertyTextTemplateFunc == null? GetPropertyText(item, PropertyText):this.PropertyTextTemplateFunc(item,this.PropertyTemplate, propertyTypeName);
|
||||||
PropertyDescriptionText = GetPropertyDescriptionText(item, PropertyDescriptionText);
|
PropertyDescriptionText = GetPropertyDescriptionText(item, PropertyDescriptionText);
|
||||||
|
if (this.IsAttribute && item.DataType?.StartsWith("_") == true && PropertyText.Contains("[]"))
|
||||||
|
{
|
||||||
|
PropertyDescriptionText += "\r\n SugarColumn(IsArray=true)";
|
||||||
|
}
|
||||||
|
else if (item?.DataType?.StartsWith("json")==true)
|
||||||
|
{
|
||||||
|
PropertyDescriptionText += "\r\n SugarColumn(IsJson=true)";
|
||||||
|
}
|
||||||
PropertyText = PropertyDescriptionText + PropertyText;
|
PropertyText = PropertyDescriptionText + PropertyText;
|
||||||
classText = classText.Replace(DbFirstTemplate.KeyPropertyName, PropertyText + (isLast ? "" : ("\r\n" + DbFirstTemplate.KeyPropertyName)));
|
classText = classText.Replace(DbFirstTemplate.KeyPropertyName, PropertyText + (isLast ? "" : ("\r\n" + DbFirstTemplate.KeyPropertyName)));
|
||||||
if (ConstructorText.HasValue() && item.DefaultValue != null)
|
if (ConstructorText.HasValue() && item.DefaultValue != null)
|
||||||
|
Reference in New Issue
Block a user