OrdersDbconn.cs 607 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MySystem.MainModels;
  5. namespace MySystem
  6. {
  7. public class OrdersDbconn
  8. {
  9. public readonly static OrdersDbconn Instance = new OrdersDbconn();
  10. #region 获取单个字段
  11. public Orders Get(int Id)
  12. {
  13. WebCMSEntities db = new WebCMSEntities();
  14. Orders order = db.Orders.FirstOrDefault(m => m.Id == Id);
  15. if (order != null)
  16. {
  17. }
  18. db.Dispose();
  19. return order;
  20. }
  21. #endregion
  22. }
  23. }