21 lines
376 B
Go
21 lines
376 B
Go
package filters
|
|
|
|
import "fmt"
|
|
|
|
type Like struct {
|
|
Like interface{} `json:"$like"`
|
|
}
|
|
|
|
func (f Like) FromJSON(data interface{}) IFilter {
|
|
return FromJson[Like](data)
|
|
}
|
|
|
|
func (f Like) ToSQLPart(ctx Context) string {
|
|
if f.Like == nil {
|
|
return ""
|
|
}
|
|
name := ctx.GetFieldName()
|
|
value := ctx.NormalizeValue(f.Like)
|
|
return fmt.Sprintf("%s LIKE %v ESCAPE '\\'", name, value)
|
|
}
|