MerchantInfoDbconn.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MySystem.MainModels;
  5. namespace MySystem
  6. {
  7. public class MerchantInfoDbconn
  8. {
  9. public readonly static MerchantInfoDbconn Instance = new MerchantInfoDbconn();
  10. #region 获取单个字段
  11. public MerchantInfo Get(int Id)
  12. {
  13. WebCMSEntities db = new WebCMSEntities();
  14. MerchantInfo order = db.MerchantInfo.FirstOrDefault(m => m.Id == Id);
  15. if (order != null)
  16. {
  17. }
  18. return order;
  19. }
  20. #endregion
  21. #region 获取列表
  22. public List<int> GetList(int UserId, int pageNum = 1, int pageSize = 10)
  23. {
  24. string key = "MerchantInfoList:" + UserId;
  25. List<int> list = new List<int>();
  26. if (RedisDbconn.Instance.Exists(key))
  27. {
  28. list = RedisDbconn.Instance.GetList<int>(key, pageNum, pageSize);
  29. if (list.Count > 0)
  30. {
  31. return list;
  32. }
  33. }
  34. WebCMSEntities db = new WebCMSEntities();
  35. var mysqllist = db.MerchantInfo.Select(m => new { m.Id, m.UserId, m.QueryCount }).Where(m => m.UserId == UserId && m.QueryCount == 1).OrderByDescending(m => m.Id).ToList();
  36. if (mysqllist.Count > 0)
  37. {
  38. List<int> newlist = new List<int>();
  39. foreach (var sub in mysqllist)
  40. {
  41. newlist.Add(sub.Id);
  42. }
  43. RedisDbconn.Instance.Clear(key);
  44. foreach (int sub in newlist)
  45. {
  46. RedisDbconn.Instance.AddRightList(key, sub);
  47. }
  48. RedisDbconn.Instance.SetExpire(key, Library.function.get_Random(1800, 5400));
  49. }
  50. db.Dispose();
  51. return list;
  52. }
  53. public List<MerchantInfo> GetTmpList(int UserId, int pageNum = 1, int pageSize = 10)
  54. {
  55. string key = "TmpMerchantInfo:" + UserId;
  56. List<MerchantInfo> list = new List<MerchantInfo>();
  57. if (RedisDbconn.Instance.Exists(key))
  58. {
  59. list = RedisDbconn.Instance.GetList<MerchantInfo>(key, pageNum, pageSize);
  60. if (list.Count > 0)
  61. {
  62. return list;
  63. }
  64. }
  65. WebCMSEntities db = new WebCMSEntities();
  66. var mysqllist = db.MerchantInfo.Where(m => m.UserId == UserId && m.QueryCount == 1).OrderByDescending(m => m.Id).ToList();
  67. if (mysqllist.Count > 0)
  68. {
  69. List<MerchantInfo> newlist = new List<MerchantInfo>();
  70. foreach (var sub in mysqllist)
  71. {
  72. newlist.Add(sub);
  73. }
  74. RedisDbconn.Instance.Clear(key);
  75. foreach (MerchantInfo sub in newlist)
  76. {
  77. RedisDbconn.Instance.AddRightList(key, sub);
  78. }
  79. RedisDbconn.Instance.SetExpire(key, Library.function.get_Random(1800, 5400));
  80. }
  81. db.Dispose();
  82. return list;
  83. }
  84. #endregion
  85. }
  86. }