嗨,我用本地数据库开发了一个 Windows 手机应用程序,这是我数据库中的一个表
[Table]
public class DBannotation
{
[Column(IsPrimaryKey = true, CanBeNull = false )]
public string annotguid { get; set; }
[Column(IsPrimaryKey = true, CanBeNull = false)]
public int foruserid { get; set; }
[Column]
public int annversion { get; set; }
[Column]
public string chapath { get; set; }
}
我必须将图像插入数据库,但我不知道该怎么做我必须添加什么类型的列提前感谢您的帮助提前感谢您的帮助