GridResultSet.cs 571 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Web;
  6. using System.Reflection;
  7. using System.Linq.Expressions;
  8. namespace Bowin.Common.Linq.Entity
  9. {
  10. [Serializable]
  11. public class GridResultSet<TEntity> : IGridResultSet<TEntity>
  12. {
  13. private List<TEntity> _rows;
  14. public List<TEntity> rows {
  15. get
  16. {
  17. return _rows;
  18. }
  19. set
  20. {
  21. _rows = value;
  22. }
  23. }
  24. public int total { get; set; }
  25. }
  26. }