我想像in 中partial match
的子句一样执行。LIKE
SQL
在 Magical Record 中,要查找指定字段的值,我们使用findByAttribute
:
NSArray *productsFoundByTitle = [Product MR_findByAttribute:@"product_title" withValue:@"bags"];
exact matches
问题是这只会返回bags
in product_title
。我也想返回,所以也会返回partial matches
类似 : 的值。mail bags
我怎样才能在 MagicalRecord 中做到这一点?