I have record a youtube video and explain, How to create .Net Core Project In Visual Studio Code.
Please watch below video for more details and hope you like it.
Full Stack Software Developer | Web Developer | Software Developer | Software Development | Angular - Tech-Coder.com | Tech Coder
ModelState.Clear(); return View(Model);
public void ConfigureServices(IServiceCollection services)
{
services.Configure(x => x.ValueCountLimit = int.MaxValue);
services.AddMvc(options =>
{
options.MaxModelBindingCollectionSize = 1500;
});
services.AddControllersWithViews();
}