.NET CORE 3 CODE DE CONSTRAINTION ENTITY FRATRESWOR

public class Image
{
    public int Id { get; set; }
    public string ImageTitle { get; set; }
    public byte[] ImageData { get; set; }
}
Inquisitive Ibex