34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
using System.Collections.Concurrent;
|
|
using Umbraco.Core.Models;
|
|
using Umbraco.Core.Models.Rdbms;
|
|
|
|
namespace Umbraco.Core.Persistence.Mappers
|
|
{
|
|
//[MapperFor(typeof(UserSection))]
|
|
//public sealed class UserSectionMapper : BaseMapper
|
|
//{
|
|
// private static readonly ConcurrentDictionary<string, DtoMapModel> PropertyInfoCacheInstance = new ConcurrentDictionary<string, DtoMapModel>();
|
|
|
|
// //NOTE: its an internal class but the ctor must be public since we're using Activator.CreateInstance to create it
|
|
// // otherwise that would fail because there is no public constructor.
|
|
// public UserSectionMapper()
|
|
// {
|
|
// BuildMap();
|
|
// }
|
|
|
|
// #region Overrides of BaseMapper
|
|
|
|
// internal override ConcurrentDictionary<string, DtoMapModel> PropertyInfoCache
|
|
// {
|
|
// get { return PropertyInfoCacheInstance; }
|
|
// }
|
|
|
|
// internal override void BuildMap()
|
|
// {
|
|
// CacheMap<UserSection, User2AppDto>(src => src.UserId, dto => dto.UserId);
|
|
// CacheMap<UserSection, User2AppDto>(src => src.SectionAlias, dto => dto.AppAlias);
|
|
// }
|
|
|
|
// #endregion
|
|
//}
|
|
} |