コード例 #1
0
 public void Load(DynamicLinqResult <TEntity> result)
 {
     Data        = result.Data;
     CurrentPage = result.CurrentPage;
     PageCount   = result.PageCount;
     PageSize    = result.PageSize;
     RowCount    = result.RowCount;
 }
コード例 #2
0
        /// <summary>
        /// Builds a dynamic linq query
        /// </summary>
        /// <param name="where">string Where expression</param>
        /// <param name="orderBy">string OrderBy expression (with support for descending)</param>
        /// <param name="skip">int number of records to skip</param>
        /// <param name="take">int number of records to return</param>
        /// <param name="totalRecords">the total number of records across all pages</param>
        /// <param name="pagedResult">paging metadata</param>
        /// <returns></returns>
        private static IQueryable <TEntity> BuildLinqQuery <TEntity>(DbSet <TEntity> src,
                                                                     string include, string where, string orderBy,
                                                                     int?skip, int?take, int?totalRecords,
                                                                     out DynamicLinqResult <TEntity> pagedResult)
            where TEntity : class
        {
            var qry = src.AsNoTracking();

            if (!string.IsNullOrWhiteSpace(include))
            {
                var includes = include.Split(";");
                foreach (var incl in includes)
                {
                    qry = qry.Include(incl);
                }
            }
            if (!string.IsNullOrWhiteSpace(where))
            {
                qry = ApplyWhere(qry, where);
            }
            if (!string.IsNullOrWhiteSpace(orderBy))
            {
                qry = qry.OrderBy(orderBy);
            }


            if (totalRecords == null || totalRecords.Value < 0)
            {
                totalRecords = qry.Count();
            }

            var skipValue = skip == null ? 0 : skip.Value;
            var takeValue = take == null ? totalRecords.Value - skipValue : take.Value;
            var pageCount = (int)Math.Ceiling(totalRecords.Value / (double)takeValue);

            pagedResult = new DynamicLinqResult <TEntity> {
                CurrentPage = 1 + (int)Math.Ceiling((skipValue) / (double)takeValue),
                PageCount   = pageCount,
                PageSize    = takeValue,
                RowCount    = totalRecords.Value
            };
            if (skipValue != 0)
            {
                qry = qry.Skip(skipValue);
            }
            if (take != null && take.Value > 0)
            {
                qry = qry.Take(takeValue);
            }

            return(qry);
        }
コード例 #3
0
        /// <summary>
        /// Builds a dynamic linq query
        /// </summary>
        /// <param name="where">string Where expression</param>
        /// <param name="orderBy">string OrderBy expression (with support for descending)</param>
        /// <param name="skip">int number of records to skip</param>
        /// <param name="take">int number of records to return</param>
        /// <param name="totalRecords">the total number of records across all pages</param>
        /// <param name="pagedResult">paging metadata</param>
        /// <returns></returns>
        private IQueryable <TEntity> BuildLinqQuery(string include, string where, string orderBy, int?skip, int?take, int?totalRecords, out DynamicLinqResult <TEntity> pagedResult)
        {
            var qry = GetQuery();

            try {
                if (!string.IsNullOrWhiteSpace(include))
                {
                    var includes = include.Split(";");
                    foreach (var incl in includes)
                    {
                        qry = qry.Include(incl);
                    }
                }
                if (!string.IsNullOrWhiteSpace(where))
                {
                    qry = ApplyWhere(qry, where);
                }
                if (!string.IsNullOrWhiteSpace(orderBy))
                {
                    qry = qry.OrderBy(orderBy);
                }
            } catch (ParseException ex) {
                throw new ArgumentException(ex.Message);
            }

            if (totalRecords == null || totalRecords.Value < 0)
            {
                totalRecords = qry.Count();
            }

            var skipValue = skip == null ? 0 : skip.Value;
            var takeValue = take == null ? totalRecords.Value - skipValue : take.Value;
            var pageCount = (int)Math.Ceiling(totalRecords.Value / (double)takeValue);

            pagedResult = new DynamicLinqResult <TEntity> {
                CurrentPage = 1 + (int)Math.Ceiling((skipValue) / (double)takeValue),
                PageCount   = pageCount,
                PageSize    = takeValue,
                RowCount    = totalRecords.Value
            };
            if (skipValue != 0)
            {
                qry = qry.Skip(skipValue);
            }
            if (take != null && take.Value > 0)
            {
                qry = qry.Take(takeValue);
            }

            return(qry);
        }
コード例 #4
0
        /// <summary>
        /// Gets a dynamic list result using a Dynamic Linq Expression
        /// https://github.com/StefH/System.Linq.Dynamic.Core
        /// https://github.com/StefH/System.Linq.Dynamic.Core/wiki/Dynamic-Expressions
        /// </summary>
        /// <param name="where">string Where expression</param>
        /// <param name="orderBy">string OrderBy expression (with support for descending)</param>
        /// <param name="skip">int number of records to skip</param>
        /// <param name="take">int number of records to return</param>
        /// <returns>dynamic-typed object</returns>
        public static void GetWithDynamicLinq <TEntity>(
            this DbSet <TEntity> src,
            out DynamicLinqResult <TEntity> result,
            string where     = null,
            string orderBy   = null,
            string include   = null,
            int?skip         = null,
            int?take         = null,
            int?totalRecords = null
            )
            where TEntity : class
        {
            IQueryable <TEntity> qry = BuildLinqQuery(src, include, where, orderBy, skip, take, totalRecords,
                                                      out DynamicLinqResult <TEntity> dynamicLinqResult);

            var res = qry.ToDynamicList <TEntity>();

            dynamicLinqResult.Data = res;
            result = dynamicLinqResult;
        }
コード例 #5
0
        /// <summary>
        /// Builds a dynamic linq query
        /// </summary>
        /// <param name="where">string Where expression</param>
        /// <param name="orderBy">string OrderBy expression (with support for descending)</param>
        /// <param name="select">string Select expression</param>
        /// <param name="skip">int number of records to skip</param>
        /// <param name="take">int number of records to return</param>
        /// <param name="totalRecords">the total number of records across all pages</param>
        /// <param name="pagedResult">paging metadata</param>
        /// <returns></returns>
        private IQueryable BuildLinqQuery(string select, string include, string where, string orderBy, int?skip, int?take, int?totalRecords, out DynamicLinqResult pagedResult)
        {
            IQueryable <TEntity> qry = BuildLinqQuery(include, where, orderBy, skip, take, totalRecords, out DynamicLinqResult <TEntity> pagedResultInner);

            pagedResult = new DynamicLinqResult {
                CurrentPage = pagedResultInner.CurrentPage,
                PageCount   = pagedResultInner.PageCount,
                PageSize    = pagedResultInner.PageSize,
                RowCount    = pagedResultInner.RowCount
            };

            if (!string.IsNullOrWhiteSpace(select))
            {
                return(qry.AsQueryable().Select(select));
            }
            else
            {
                return(qry.AsQueryable());
            }
        }