You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
483 B

using System.Data;
using Tiobon.Core.DB.Dapper;
using Xunit;
namespace Tiobon.Core.Tests.Common_Test;
public class DbAccess_Should
{
[Fact]
public async void Test()
{
AppSetting.Init();
string sql = "SELECT * FROM Ghra_Grade";
DataTable dt = await DbAccess.GetDataTableAsync(sql);
//var list = await DbAccess.QueryListAsync<Ghra_Grade>(sql);
//var entity = new Ghra_Grade();
//DbAccess.Add(entity);
}
}