dal/pkg/filters/Lt.go
Anton Nesterov 42ab71e964
[ref] use sfmt arguments i/of values in find expressions
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-12 20:21:47 +02:00

19 lines
339 B
Go

package filters
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, Values) {
if f.Lt == nil {
return "", nil
}
name := ctx.GetFieldName()
value := ctx.NormalizeValue(f.Lt)
return FmtCompare("<", name, value)
}