dal/pkg/filters/Eq.go

26 lines
416 B
Go
Raw Normal View History

package filters
import (
"fmt"
)
type Eq struct {
Eq interface{} `json:"$eq"`
}
2024-08-08 17:26:29 +00:00
func (f Eq) FromJSON(data interface{}) IFilter {
return FromJson[Eq](data)
}
func (f Eq) ToSQLPart(ctx Context) string {
if f.Eq == nil {
return ""
}
name := ctx.GetFieldName()
value := ctx.NormalizeValue(f.Eq)
if value == "NULL" {
return fmt.Sprintf("%s IS NULL", name)
}
return fmt.Sprintf("%s = %v", name, value)
}