windows phone 存储图片 数据库写法
Posted 叶常绿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows phone 存储图片 数据库写法相关的知识,希望对你有一定的参考价值。
byte[] _DiseaseImage;
[Column(DbType = "Image", UpdateCheck = UpdateCheck.Never)] //保证图像超出8K时不会出错
public byte[] DiseaseImage
{
get
{
return (byte[])this._DiseaseImage;
}
set
{
if (this._DiseaseImage != value)
{
OnPropertyChanging("DiseaseImage");
this._DiseaseImage = value;
OnPropertyChanged("DiseaseImage");
}
}
}
以上是关于windows phone 存储图片 数据库写法的主要内容,如果未能解决你的问题,请参考以下文章
Windows phone 7:获取存储在库图片中的照片名称?
在 Windows Phone 中存储和检索 mp3 文件?
如何将图像存储在 Windows Phone 的 SqlCe 数据库中