mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 20:38:16 +08:00
- 修复 pgsql dbfirst 未处理数组类型生成的问题;
This commit is contained in:
@ -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();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user