Skip to content

Commit 82843c7

Browse files
committed
#736 Better Postgress types support
1 parent 0e1ee05 commit 82843c7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using Generator.Tests.Common;
2+
using NUnit.Framework;
3+
4+
namespace Generator.Tests.Unit.EFCore
5+
{
6+
[TestFixture]
7+
[NonParallelizable]
8+
[Category(Constants.Integration)]
9+
[Category(Constants.DbType.PostgreSql)]
10+
public class SingleDatabaseTestPostgreSql
11+
{
12+
/*[Test]
13+
public void Read_EfrpgTest_AllColumnTypes()
14+
{
15+
using var db = new MyEf6DbContext("Server=127.0.0.1;Port=5432;Database=EfrpgTest;User Id=testuser;Password=testtesttest;");
16+
var rows = db.Allcolumntypes.ToList();
17+
Assert.IsNotNull(rows);
18+
Assert.IsNotEmpty(rows);
19+
Assert.AreEqual(1234, rows.First().Bigint);
20+
}*/
21+
}
22+
}

0 commit comments

Comments
 (0)