增加 Oracle IDbFirst 接口实现;

This commit is contained in:
28810
2019-04-15 14:10:10 +08:00
parent 05a40233ee
commit e5ba4b1974
6 changed files with 463 additions and 360 deletions

View File

@ -0,0 +1,21 @@
using FreeSql.DataAnnotations;
using System;
using Xunit;
namespace FreeSql.Tests.Oracle {
public class OracleDbFirstTest {
[Fact]
public void GetDatabases() {
var t1 = g.oracle.DbFirst.GetDatabases();
}
[Fact]
public void GetTablesByDatabase() {
var t2 = g.oracle.DbFirst.GetTablesByDatabase();
}
}
}