skip to Main Content

Javascript – How to use nodejs's zlib to unzip GzipStream from .net?

Im using API gateway from AWS. Data comein is the binary format from somebody's post request. And we know it is created by :https://learn.microsoft.com/en-us/dotnet/api/system.io.compression.gzipstream?view=netframework-4.6 body: `x1F�bx00x00x00x00x00x04x00��]o�0x14���oG��x0Fx02��t�&�x1B"x19�6��I��7'����x10�}vn` +`x1F�bx00x00x00x00x00x04x00��]o�0x14���oG��x0Fx02��t�&�x1B"x19�6��I��7'����x10�}vn` ...., isBase64Encoded: false ... 'Content-Type': 'application/gzip', My current attempt const B = new…

VIEW QUESTION

Postgresql – EF Core querying gives an error "Could not load file or assembly 'Npgsql. The system cannot find the file specified."

I am using .NET 6 and PostgreSQL database. I have a hosted service, which periodically calls repository's function and is querying database entities using EF Core as so: public class NotificationRepository : INotificationRepository { public async Task<List<Notification>> GetUnreadDeviceNotifications() { using…

VIEW QUESTION
Back To Top
Search