using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.ModelBinding; using Microsoft.Extensions.DependencyInjection; namespace Infrastructure.Extensions { public static class ControllerExtensions { public static ModelMetadata GetModelMetadata(this ControllerBase controller) { return controller.HttpContext.RequestServices.GetRequiredService().GetMetadataForType(typeof(T)); } } }