If the image file has between 21,039,264 and 45,805,076 bytes of data.. It throws an Out of Memory Error.
when writing to the DB using
private IMagicQuery<ImagesTable>? ImagesTableQ{ get; set; }
ImagesTableQ= await _MagicDb.Query<ImagesTable>();
await ImagesTableQ.AddAsync(img);
Is there a limit that can be stored in a single field?
If the image file has between 21,039,264 and 45,805,076 bytes of data.. It throws an Out of Memory Error.
when writing to the DB using
Is there a limit that can be stored in a single field?