Skip to content

Instantly share code, notes, and snippets.

View magicxor's full-sized avatar
🦊
foxiest of the hounds

Ilia Burakov magicxor

🦊
foxiest of the hounds
  • Canada
View GitHub Profile
@magicxor
magicxor / CommaSeparatedArrayModelBinder.cs
Created October 19, 2022 08:13 — forked from copernicus365/CommaSeparatedArrayModelBinder.cs
A model binder allowing ASP.NET Core binding of primitive arrays as query parameters, modified from: https://stackoverflow.com/q/65544525/264031
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using Microsoft.AspNetCore.Mvc.ModelBinding.Binders;
using Microsoft.Extensions.DependencyInjection;