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