Armazene as imagens no SQL Server usando o EF Core e asp.net Core

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