Esempio n. 1
0
 public static string StringFilter(string q, string columnname, DataTablesPropertyInfo columntype, List <object> parametersforlinqquery)
 {
     if (q == ".*")
     {
         return("");
     }
     if (q.StartsWith("^"))
     {
         if (q.EndsWith("$"))
         {
             parametersforlinqquery.Add(q.Substring(1, q.Length - 2));
             var parameterArg = "@" + (parametersforlinqquery.Count - 1);
             return(string.Format("{0} ==  {1}", columnname, parameterArg));
         }
         else
         {
             parametersforlinqquery.Add(q.Substring(1));
             var parameterArg = "@" + (parametersforlinqquery.Count - 1);
             return(string.Format("({0} != null && {0} != \"\" && ({0} ==  {1} || {0}.StartsWith({1})))", columnname, parameterArg));
         }
     }
     else
     {
         parametersforlinqquery.Add(q);
         var parameterArg = "@" + (parametersforlinqquery.Count - 1);
         //return string.Format("{0} ==  {1}", columnname, parameterArg);
         return
             (string.Format(
                  "({0} != null && {0} != \"\" && ({0} ==  {1} || {0}.StartsWith({1}) || {0}.Contains({1})))",
                  columnname, parameterArg));
     }
 }
Esempio n. 2
0
        public static string BoolFilter(string query, string columnname, DataTablesPropertyInfo propertyInfo, List <object> parametersForLinqQuery)
        {
            if (query != null)
            {
                query = query.TrimStart('^').TrimEnd('$');
            }
            var lowerCaseQuery = query.ToLowerInvariant();

            if (lowerCaseQuery == "false" || lowerCaseQuery == "true")
            {
                if (query.ToLower() == "true")
                {
                    return(columnname + " == true");
                }
                return(columnname + " == false");
            }
            if (propertyInfo.Type == typeof(bool?))
            {
                if (lowerCaseQuery == "null")
                {
                    return(columnname + " == null");
                }
            }
            return(null);
        }
Esempio n. 3
0
        public static string DateTimeFilter(string query, string columnname, DataTablesPropertyInfo propertyInfo, List <object> parametersForLinqQuery)
        {
            if (query == "~")
            {
                return(string.Empty);
            }
            if (query.Contains("~"))
            {
                var parts = query.Split('~');

                var filterString = null as string;

                DateTime start, end;
                if (DateTime.TryParse(parts[0] ?? "", out start))
                {
                    filterString = columnname + " >= @" + parametersForLinqQuery.Count;
                    parametersForLinqQuery.Add(start);
                }

                if (DateTime.TryParse(parts[1] ?? "", out end))
                {
                    filterString = (filterString == null ? null : filterString + " and ") + columnname + " <= @" + parametersForLinqQuery.Count;
                    parametersForLinqQuery.Add(end);
                }

                return(filterString ?? "");
            }
            else
            {
                return(string.Format("{1}.ToLocalTime().ToString(\"g\").{0}", FilterMethod(query, parametersForLinqQuery, propertyInfo.Type), columnname));
            }
        }
Esempio n. 4
0
        public static string NumericFilter(string query, string columnname, DataTablesPropertyInfo propertyInfo, List <object> parametersForLinqQuery)
        {
            if (query.StartsWith("^"))
            {
                query = query.TrimStart('^');
            }
            if (query.EndsWith("$"))
            {
                query = query.TrimEnd('$');
            }

            if (query == "~")
            {
                return(string.Empty);
            }

            if (query.Contains("~"))
            {
                var parts  = query.Split('~');
                var clause = null as string;
                try
                {
                    parametersForLinqQuery.Add(ChangeType(propertyInfo, parts[0]));
                    clause = string.Format("{0} >= @{1}", columnname, parametersForLinqQuery.Count - 1);
                }
                catch (FormatException)
                {
                }

                try
                {
                    parametersForLinqQuery.Add(ChangeType(propertyInfo, parts[1]));
                    if (clause != null)
                    {
                        clause += " and ";
                    }
                    clause += string.Format("{0} <= @{1}", columnname, parametersForLinqQuery.Count - 1);
                }
                catch (FormatException)
                {
                }
                return(clause ?? "true");
            }
            else
            {
                try
                {
                    parametersForLinqQuery.Add(ChangeType(propertyInfo, query));
                    return(string.Format("{0} == @{1}", columnname, parametersForLinqQuery.Count - 1));
                }
                catch (FormatException)
                {
                }
                return(null);
            }
        }
Esempio n. 5
0
 private static object ChangeType(DataTablesPropertyInfo propertyInfo, string query)
 {
     if (propertyInfo.PropertyInfo.PropertyType.IsGenericType && propertyInfo.Type.GetGenericTypeDefinition() == typeof(Nullable <>))
     {
         Type u = Nullable.GetUnderlyingType(propertyInfo.Type);
         return(Convert.ChangeType(query, u));
     }
     else
     {
         return(Convert.ChangeType(query, propertyInfo.Type));
     }
 }
Esempio n. 6
0
 public static string EnumFilter(string q, string columnname, DataTablesPropertyInfo propertyInfo, List <object> parametersForLinqQuery)
 {
     if (q.StartsWith("^"))
     {
         q = q.Substring(1);
     }
     if (q.EndsWith("$"))
     {
         q = q.Substring(0, q.Length - 1);
     }
     parametersForLinqQuery.Add(ParseValue(q, propertyInfo.Type));
     return(columnname + " == @" + (parametersForLinqQuery.Count - 1));
 }
Esempio n. 7
0
        private static string GetFilterClause(string query, DataTablesPropertyInfo column, List <object> parametersForLinqQuery)
        {
            Func <string, string> filterClause = (queryPart) =>
                                                 Filters.Select(
                f => f(queryPart, column.PropertyInfo.Name, column, parametersForLinqQuery))
                                                 .FirstOrDefault(filterPart => filterPart != null) ?? "";

            var queryParts = query.Split('|').Select(filterClause).Where(fc => fc != "").ToArray();

            if (queryParts.Any())
            {
                return("(" + string.Join(") OR (", queryParts) + ")");
            }
            return(null);
        }
Esempio n. 8
0
 public static bool IsDateTimeOffsetType(DataTablesPropertyInfo propertyInfo)
 {
     return(propertyInfo.Type == typeof(DateTimeOffset) || propertyInfo.Type == typeof(DateTimeOffset?));
 }
Esempio n. 9
0
 public static bool IsBoolType(DataTablesPropertyInfo propertyInfo)
 {
     return(propertyInfo.Type == typeof(bool) || propertyInfo.Type == typeof(bool?));
 }
Esempio n. 10
0
 public static bool IsEnumType(DataTablesPropertyInfo propertyInfo)
 {
     return(propertyInfo.Type.IsEnum);
 }
Esempio n. 11
0
        public static bool IsNumericType(DataTablesPropertyInfo propertyInfo)
        {
            var type = propertyInfo.Type;

            return(IsNumericType(type));
        }