hi
Here is my test code, it works. What should I change to reproduce the exception?
Thanks
public class HomeController : AbpController
{
public async Task<ActionResult> Index(MyFiles file)
{
using (var ms = new MemoryStream())
{
await file.Files.First().GetStream().CopyToAsync(ms);
var filename = file.Files.First().FileName;
var fileContent = ms.ToArray();
}
using (var ms = new MemoryStream())
{
await file.Files.Last().GetStream().CopyToAsync(ms);
var filename = file.Files.Last().FileName;
var fileContent = ms.ToArray();
}
return new OkResult();
}
}
public class MyFiles
{
public List<IRemoteStreamContent> Files { get; set; }
}
Thanks. I will check it asap.
👍
hi @blepo
Can you share your test Blazor project?
I will try to reproduce it in the local environment and find out the reason.
You can share it with liming.ma@volosoft.com
Thanks.
hi
Can you just share the full logs?
I will check it.
Thanks.
Hi
Can you share the logs that contain the http request info?
The context logs .
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
You can share it with liming.ma@volosoft.com
Thanks
Hi
Can you share full logs?
Thanks.
Refeunded.
hi
1 and 2
Can you change the icon
URL in your project? we will fix it in next Studio release.
3 ImpersonateUser
We will fix them in 9.1.2, You can override the component now. if you need the source code of the component,, you can send an email liming.ma@volosoft.com
We will remove /
prefix from the action.
Thanks.
hi
This is actually a limitation of EF Core, we can do nothing about it.
Thanks.