This article is tagged with:
Store images in sql server using ef core and asp.net core
and mysql
Store Images In SQL Server Using EF Core And ASP.NET Core
public class Image
{
public int Id { get; set; }
public string ImageTitle { get; set; }
public byte[] ImageData { get; set; }
}