Since I am using MVC .Net Core 9.0.3 I added the following code in my Program.cs file.
After that, no issue loading that specific file. I probably hit somehow the Form value count limit 1024 .
services.Configure<FormOptions>(options =>
{
options.ValueCountLimit = int.MaxValue;
});