Skip to content Skip to sidebar Skip to footer

Custom Functions Sqlite With Mono

is there a way to add SQLite custom function using Mono? (Mono.Data.Sqlite) I tried to add distance function that returns the distance between two geo locations [SqliteFunctio

Solution 1:

Look at the Reverse Callbacks paragraph of the page that the error reports: in practice you need to apply the MonoPInvokeCallbackAttribute attribute to the method (and it needs to be made static).

This is a limitation on iOS devices, because they don't support JIT compilers.

Post a Comment for "Custom Functions Sqlite With Mono"