query a list of dynamic objects
问题 I am using massive to get the config table in the database. I would like to cache the config since the app gets values from it all the time. once cached is there an easy way to find the object where name = 'something' here is where the whole table is cached. protected override dynamic Get() { var ret = HttpRuntime.Cache["Config"]; if (ret == null) { ret = _table.All(); HttpRuntime.Cache.Add("Config", ret, null, DateTime.Now.AddMinutes(2), Cache.NoSlidingExpiration,CacheItemPriority.Low, null