Hello! Tell me, please, is it possible to add References in Xamarin Forms Portable? For some reason, my list is empty, I can’t even connect System.Data. But on the Android project, all the links are there and you can connect them. Or is it only necessary to manually add dlls in the Portable from the Folder? Thanks in advance!
1 answer
In a Portable
project, you cannot add to System.Data
References.
If you need to work with the database, you can use MysqlLite as specified in the documentation.
The disadvantages of PCL include:
Since a portable class library is shared across multiple applications, platform-specific libraries cannot be added to references (for example, Community.CsharpSqlite.WP7).
PCL should not include classes that can be immediately available in MonoTouch and Mono for Android (for example, DllImport or System.IO.File).
|