rename ArrayToMany to PgArrayToMany

This commit is contained in:
2881099
2022-06-04 15:23:24 +08:00
parent 5e5d464224
commit 3411552673
6 changed files with 35 additions and 18 deletions

View File

@ -157,7 +157,7 @@ namespace FreeSql
{
case TableRefType.OneToOne:
case TableRefType.ManyToOne:
case TableRefType.ArrayToMany:
case TableRefType.PgArrayToMany:
throw new ArgumentException(DbContextStrings.PropertyOfType_IsNot_OneToManyOrManyToMany(_table.Type.FullName, propertyName));
}
@ -227,7 +227,7 @@ namespace FreeSql
else await refSet.AddOrUpdateAsync(propValItem);
return;
case TableRefType.ManyToOne:
case TableRefType.ArrayToMany:
case TableRefType.PgArrayToMany:
return;
}