mirror of
https://github.com/fergalmoran/EFCore.NamingConventions.git
synced 2025-12-22 09:38:21 +00:00
41 lines
1.8 KiB
C#
41 lines
1.8 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure;
|
|
using EFCore.NamingConventions.Internal;
|
|
using JetBrains.Annotations;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace Microsoft.Extensions.DependencyInjection;
|
|
|
|
/// <summary>
|
|
/// Extension methods for <see cref="Microsoft.Extensions.DependencyInjection.IServiceCollection" />.
|
|
/// </summary>
|
|
public static class NamingConventionsServiceCollectionExtensions
|
|
{
|
|
/// <summary>
|
|
/// <para>
|
|
/// Adds the services required for applying naming conventions in Entity Framework Core.
|
|
/// You use this method when using dependency injection in your application, such as with ASP.NET.
|
|
/// For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890.
|
|
/// </para>
|
|
/// <para>
|
|
/// You only need to use this functionality when you want Entity Framework to resolve the services it uses
|
|
/// from an external dependency injection container. If you are not using an external
|
|
/// dependency injection container, Entity Framework will take care of creating the services it requires.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <param name="serviceCollection">The <see cref="IServiceCollection" /> to add services to.</param>
|
|
/// <returns>
|
|
/// The same service collection so that multiple calls can be chained.
|
|
/// </returns>
|
|
public static IServiceCollection AddEntityFrameworkNamingConventions(
|
|
[NotNull] this IServiceCollection serviceCollection)
|
|
{
|
|
Check.NotNull(serviceCollection, nameof(serviceCollection));
|
|
|
|
new EntityFrameworkServicesBuilder(serviceCollection)
|
|
.TryAdd<IConventionSetPlugin, NamingConventionSetPlugin>();
|
|
|
|
return serviceCollection;
|
|
}
|
|
} |