We are building an android application using Xamarin's mono for android and for a cross platform persistence solution we are using sqlite-net
In a debug build everything is OK, all use cases pass and we're happy. When building for release the data layer is not functional at all. Since it's in release mode it's pretty difficult to debug (by definition I guess) but eventually I zoomed in on the problem: When creating the table the sqlite-net framework iterates over the properties and uses only those which are writable. The problem is that in release mode all the properties of out POCO return false for PropertyInfo.CanWrite.