PostgreSQL load images to DB
I've already know how to store images in DB, just use bytea type in my table And I've already can save images to DB via code in my project .net Core, I've just getting image by url and saving like there: using (HttpResponseMessage res = await client.GetAsync(photo_url)) using (HttpContent content = res.Content) { byte[] imageByte = await content.ReadAsByteArrayAsync(); using (NpgsqlConnection conn = new NpgsqlConnection("ConnectionString")) { conn.Open(); using (NpgsqlTransaction tran = conn.BeginTransaction()) using (NpgsqlCommand cmd = new NpgsqlCommand("Photo_Save", conn)) { cmd.CommandType