我需要在List<int> indexesInvolved = new List<int>();
var resultArray = cost.Where((item, index) =>
{
if (item <= 29) {
indexesInvolved.Add(index);
return true;
}
else {
return false;
}
}
).ToArray();
var foundIndexArray = indexesInvolved.ToArray();
应用中使用SQLite
,但我是Phonegap
Phonegap
中有哪些更简单的工作方式SQLite
?
我的应用专注于Android设备
答案 0 :(得分:1)
试试这个插件https://github.com/litehelpers/Cordova-sqlite-storage
。这也得到了phonegap的支持。在使用之前,请参阅如何使用和限制部分。
如果您打算使用phonegap构建并需要任何其他替代插件,请访问https://build.phonegap.com/plugins并搜索sqlite插件。