I would like to derive from DbSyncProvider to write a sync provider for my database (Sqlite) but I am stucked by the fact that must of the preconfigured query like for example DbSyncProvider.SelectNewTimestampProvider, DbSyncProvider.SelectScopeInfoCommand
and so on are expected output parameter ParameterDirection.Output but Sqlite do not support output parameter only ParameterDirection.Input.
Any chance I can find a workaround for this ? If not I will have to derive from RelationalSyncProvider which is far more complicated.
Thanks in advance for your help.