当我需要一张图片时,我有这个:
[Column(TypeName = "image")]
public byte[] Photo
{ get; set; }
但是当我需要多个时我该怎么办?
当我需要一张图片时,我有这个:
[Column(TypeName = "image")]
public byte[] Photo
{ get; set; }
但是当我需要多个时我该怎么办?
使用数组或列表。
public class Photo
{
public byte[] Binary { get; set; }
}
var list=new List<Photo>();
您需要将它们存储在自己的模型中并将其添加为关系,如下所示:
public class Photo
{
public byte[] Binary { get; set; }
}
public class ModelWithPhotos
{
public virtual IList<Photo> Photos { get; set; }
}