1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using MySystem.MainModels;
- namespace MySystem
- {
- public class MerchantAddInfoDbconn
- {
- public readonly static MerchantAddInfoDbconn Instance = new MerchantAddInfoDbconn();
- #region 获取单个字段
- public MerchantAddInfo Get(int Id)
- {
- string key = "MerchantAddInfo:" + Id;
- if (RedisDbconn.Instance.Exists(key))
- {
- MerchantAddInfo obj = RedisDbconn.Instance.Get<MerchantAddInfo>(key);
- if (obj != null)
- {
- return obj;
- }
- }
- WebCMSEntities db = new WebCMSEntities();
- MerchantAddInfo order = db.MerchantAddInfo.FirstOrDefault(m => m.Id == Id);
- if (order != null)
- {
- RedisDbconn.Instance.Set(key, order);
- RedisDbconn.Instance.SetExpire(key, Library.function.get_Random(1800, 5400));
- }
- return order;
- }
- #endregion
- }
- }
|