我试图在 xamarin 中执行这个查询
SELECT * FROM GPSPoint WHERE SQRT( POW({0}-lat,2) + POW({1}-lng,2) ) < 5*5
但它给了我错误信息
SQLite.SQLiteException: no such function: SQRT
并且经过搜索发现Android开发者可以使用sqlite3_create_function方法在SQLite中创建新的函数。
我怎样才能在 xamarin 中做同样的事情?