dotnet-cqrs/PoweredSoft.CQRS.DynamicQuery.AspNetCore/MvcBuilderExtensions.cs
2023-10-02 11:25:45 -04:00

21 lines
902 B
C#

using System;
using Microsoft.Extensions.DependencyInjection;
using PoweredSoft.CQRS.DynamicQuery.AspNetCore.Mvc;
namespace PoweredSoft.CQRS.DynamicQuery.AspNetCore
{
public static class MvcBuilderExtensions
{
public static IMvcBuilder AddPoweredSoftDynamicQueries(this IMvcBuilder builder, Action<DynamicQueryControllerOptions> configuration = null)
{
var options = new DynamicQueryControllerOptions();
configuration?.Invoke(options);
var services = builder.Services;
var serviceProvider = services.BuildServiceProvider();
builder.AddMvcOptions(o => o.Conventions.Add(new DynamicQueryControllerConvention(serviceProvider)));
builder.ConfigureApplicationPartManager(m => m.FeatureProviders.Add(new DynamicQueryControllerFeatureProvider(serviceProvider)));
return builder;
}
}
}