12 lines
370 B
C#
12 lines
370 B
C#
|
|
using Umbraco.Cms.Core.Mapping;
|
|||
|
|
using Umbraco.Cms.Infrastructure.Persistence;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Cms.Persistence.SqlServer.Services;
|
|||
|
|
|
|||
|
|
public class SqlServerSpecificMapperFactory : IProviderSpecificMapperFactory
|
|||
|
|
{
|
|||
|
|
public string ProviderName => Constants.ProviderName;
|
|||
|
|
|
|||
|
|
public NPocoMapperCollection Mappers => new(() => new[] { new UmbracoDefaultMapper() });
|
|||
|
|
}
|