* fix sqlite with variants * Create and register SqlSpecificMapper * Delete obsolete file * Add back inheritance Co-authored-by: Zeegaan <nge@umbraco.dk>
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() });
|
|
}
|