In what scenarios would we need to use '=ilike' in domain operation.
When we create a domain, we have multiple operators available in OpenERP 7 at server/openerp/osv/expression.py
TERM_OPERATORS = ('=', '!=', '<=', '<', '>', '>=', '=?', '=like', '=ilike', 'like', 'not like', 'ilike', 'not ilike', 'in', 'not in', 'child_of')
Can anyone provide me a scenario where we need to use these operators in domain:
1. =?
2. =like
3. =ilike
4. like
5. ilike
6. child_of