Closed Bsantos19 closed 2 years ago
Olá, estou tentando realizar uma consulta usando os operadores (em campos dateTime e double) GreaterThanOrEqualTo e/ou LessThanOrEqualTo
Mas estou recebendo os erros:
The binary operator GreaterThanOrEqual is not defined for the types 'System.Nullable`1[System.Double]' and 'System.Double'.
The binary operator LessThanOrEqual is not defined for the types 'System.Nullable`1[System.DateTime]' and 'System.DateTime'.
Abaixo a forma como fiz a implementação:
[QueryOperator(Operator = WhereOperator.GreaterThanOrEqualTo, HasName = "ValorPrincipal")] public double? ValorPrincipalMaiorIgual { get; set; } [QueryOperator(Operator = WhereOperator.LessThanOrEqualTo, HasName = "DataVencimento")] public DateTime? DataVencimentoMenorIgual { get; set; }
Foi aberto uma PR para o item informado. Aguardando a aprovação
PR #7 aceito.
Olá, estou tentando realizar uma consulta usando os operadores (em campos dateTime e double) GreaterThanOrEqualTo e/ou LessThanOrEqualTo
Mas estou recebendo os erros:
The binary operator GreaterThanOrEqual is not defined for the types 'System.Nullable`1[System.Double]' and 'System.Double'.
The binary operator LessThanOrEqual is not defined for the types 'System.Nullable`1[System.DateTime]' and 'System.DateTime'.
Abaixo a forma como fiz a implementação: