.net Core 3 Entity Framework Code Code First Image Field

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