using SqlSugar; using System; using System.Collections.Generic; using System.Data; using Uninpho.DBOperation.Model; namespace Uninpho.DBOperation.Operation { public class DataManager { public static void getDataList() { SqlSugarClient db = Config.GetPgClient(); var list = db.SqlQueryable("select * from \"user\"").ToList(); } } }