Ormlite - Save only selected fields

Hi,

I maybe missing something completely but is there an method to do the following.

Save but only save selected fields?

I know this can be achieved with UpdateOnly but you have to specify the where criteria on the primary key which is an easy thing to miss.

Dan

No only the Update API’s let you specify a list of fields, Save(), either Inserts or Updates an entire POCO, it doesn’t make sense to only insert a partial list of fields.

All Update APIs lets you specify a partial list of fields, not only UpdateOnly.