AbhishekOriginal post
Rank 2: Process
Hello, I trying to build an appwrite function in .net 7.0. Frontend is sending the formData with multipart file. Therefore, in the function, I need to convert the request body to IFormCollection body but I'm not able to do so. I need help here.
Summary
Developers in .net 7.0 trying to get IFormCollection from Context.Req.Body are encountering an InvalidCastException. To resolve this, consider using `Request.Form` to retrieve the form collection.