如何将本地图像路径存储在 sqlite 或 xml 数据库中 Xamrin.Forms

How to store the Local image path in sqlite or xml database in Xamrin.Forms

我已经分配了将图像路径存储在数据库中的任务 xml 模式或 sqlite database.I 正在处理 Xamarin.Forms PCL 项目。我很困惑如何将图像路径存储在 database.because 中 android 图像应该放在 Ressource/drawble 中,ios 图像放在 Resources 文件夹中。我阅读了 this xamarin.forms 文档。但不知道如何获取路径并存储在数据库中。请任何人提供任何资源或示例。

Hope you have gone through this documentation and to distinguish between iOS and Android is also Given here in this documentation .

if (Device.OS == TargetPlatform.iOS) {
    // Save in sqlite with iOS path
}if (Device.OS == TargetPlatform.Android) {
    // Save in sqlite with Android path
}

希望对您有所帮助。