我正在使用dapper扩展程序并对class mapper有疑问。不幸的是,我的大多数表需要对它们进行一些映射,例如不同的模式等。
所以我发现我通常会按照以下方式更换DefaultMapper:
public Hierarchies HierarchyGetByName(string aName)
{
Hierarchies result;
using (SqlConnection cn = GetSqlConnection())
{
cn.Open();
Type currModelMapper = DapperExtensions.DapperExtensions.DefaultMapper;
try
{
DapperExtensions.DapperExtensions.DefaultMapper = typeof(HierarchiesMapper);
IFieldPredicate predicate = Predicates.Field<Hierarchies>(f => f.Name, Operator.Eq, aName);
result = cn.GetList<Hierarchies>(predicate).FirstOrDefault();
}
finally
{
DapperExtensions.DapperExtensions.DefaultMapper = currModelMapper;
}
cn.Close();
}
return result;
}
如果我访问2个表,那么我必须这样做两次。
有没有办法一次性添加所有mapper类来说出一个集合,并根据被访问的表选择正确的一个?
答案 0 :(得分:0)
您可以在应用中添加一组将自定义重新映射应用于实体的类。例如,这3个空类将PrefixDapperTableMapper应用于Profile和FileNotificationAdhocRecipient类,而AnotherDifferentTypeOfDapperClassMapper应用于NotificationProfile。
public class ProfileMapper : PrefixDapperTableMapper<Domain.Entities.Profile>
{
}
public class FileNotificationAdhocRecipientMapper : PrefixDapperTableMapper<Domain.Entities.FileNotificationAdhocRecipient>
{
}
public class NotificationProfileMapper : AnotherDifferentTypeOfDapperClassMapper<Domain.Entities.NotificationProfile>
{
}
并且您的实际映射代码存在于单独的映射器中(我没有显示AnotherDifferentTypeOfDapperClassMapper,但这类似于下面的内容)
public class PrefixDapperTableMapper<T> : ClassMapper<T> where T : class
{
public PrefixDapperTableMapper()
{
AutoMap();
}
//name or schema manipulations in some overrides here.
}
只要它们在同一个程序集中,DapperExtensions就会找到并使用它们,或者您可以使用类似于以下代码设置映射程序集:
DapperExtensions.DapperExtensions.SetMappingAssemblies({ typeof(ProfileMapper ).Assembly })