dal/pkg/filters/Lt.go
Anton Nesterov 43dd4e9234
[ref] name things what they are
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-11 21:49:49 +02:00

23 lines
350 B
Go

package filters
import (
"fmt"
)
type Lt struct {
Lt interface{} `json:"$lt"`
}
func (f Lt) FromJSON(data interface{}) IFilter {
return FromJson[Lt](data)
}
func (f Lt) ToSQLPart(ctx Dialect) string {
if f.Lt == nil {
return ""
}
name := ctx.GetFieldName()
value := ctx.NormalizeValue(f.Lt)
return fmt.Sprintf("%s < %v", name, value)
}