コード例 #1
0
ファイル: DbSession.cs プロジェクト: lanicon/BeeNetFramework
 public SPSchema GetSpSchema(string spName)
 {
     return(CacheManager.Instance.GetEntity <SPSchema, string>(
                Constants.BeeDataTableSchemaCacheCategory + dbDriver.ConnectionName,
                spName, TimeSpan.FromHours(1), spNamePara =>
     {
         return dbDriver.GetSpSchema(spNamePara);
     }));
 }