- 修复 pgsql dbfirst 未处理数组类型生成的问题;

This commit is contained in:
28810
2020-06-30 01:34:38 +08:00
parent 68981d03ac
commit 806c826187
7 changed files with 33 additions and 4 deletions

View File

@ -1,5 +1,6 @@
using FreeSql.DataAnnotations;
using System;
using System.Linq;
using Xunit;
namespace FreeSql.Tests.PostgreSQL
@ -20,6 +21,8 @@ namespace FreeSql.Tests.PostgreSQL
var t2 = g.pgsql.DbFirst.GetTablesByDatabase(g.pgsql.DbFirst.GetDatabases()[1]);
var tb_alltype = t2.Where(a => a.Name == "tb_alltype").FirstOrDefault();
}
}
}

View File

@ -16,6 +16,10 @@ using kwlib;
using System.Diagnostics;
using System.IO;
using System.Text;
using Newtonsoft.Json;
using System.Net.NetworkInformation;
using System.Net;
using System.Collections;
namespace FreeSql.Tests
{
@ -502,3 +506,5 @@ namespace FreeSql.Tests
}
}