ConsumerOpenIdsDbconn.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MySystem.MainModels;
  5. namespace MySystem
  6. {
  7. public class ConsumerOpenIdsDbconn
  8. {
  9. public readonly static ConsumerOpenIdsDbconn Instance = new ConsumerOpenIdsDbconn();
  10. #region 获取单个字段
  11. public ConsumerOpenIds Get(string OpenId)
  12. {
  13. string key = "ConsumerOpenIds:" + OpenId;
  14. if (RedisDbconn.Instance.Exists(key))
  15. {
  16. ConsumerOpenIds obj = RedisDbconn.Instance.Get<ConsumerOpenIds>(key);
  17. if (obj != null)
  18. {
  19. return obj;
  20. }
  21. }
  22. WebCMSEntities db = new WebCMSEntities();
  23. ConsumerOpenIds order = db.ConsumerOpenIds.FirstOrDefault(m => m.OpenId == OpenId);
  24. if (order != null)
  25. {
  26. RedisDbconn.Instance.Set(key, order);
  27. RedisDbconn.Instance.SetExpire(key, Library.function.get_Random(1800, 5400));
  28. }
  29. return order;
  30. }
  31. #endregion
  32. }
  33. }