Linq to Sqlite 的indexof
使用sqlite的linq:
var reachTable=db.TableName.where(p=>p.StrField.indexof("123")>=0);
这样失败,但是使用contains成功:
var reachTable=db.TableName.where(p=>p.StrField.contains("123");
难道linq to Sqlite不能使用indexof?
[解决办法]
linq to sql也不支持indexof吧。
[解决办法]
linq to sql应该支持,sqlite没玩过,不大清楚
失败,报什么错误??
[解决办法]
indexof返回的是第一个符合条件数据序号。。。。
[解决办法]