Beispiel #1
0
 public SPSchema GetSpSchema(string spName)
 {
     return(CacheManager.Instance.GetEntity <SPSchema, string>(
                Constants.BeeDataTableSchemaCacheCategory + dbDriver.ConnectionName,
                spName, TimeSpan.FromHours(1), spNamePara =>
     {
         return dbDriver.GetSpSchema(spNamePara);
     }));
 }