using SqlSugar; using System; using System.Collections.Generic; using System.Data; using Uninpho.DBOperation.Model; namespace Uninpho.DBOperation.Operation { public class MetaDataCtrl { /// /// 获取曲线信息管理数据 /// public static List GetMetaData(string tablename) { SqlSugarClient db = Config.GetPgClient(); string strSql = String.Format("select * from \"t_metadata_account\" where tablename = '{0}'", tablename); List listqx = db.SqlQueryable(strSql).ToList(); return listqx; } } }