自动映射器从字符串转换为 Int
本文关键字:转换 Int 字符串 映射 | 更新日期: 2023-09-27 18:31:01
我正在创建一个简单的MVC4应用程序
我有一个自动映射器
Mapper.CreateMap<SourceClass, DestinationClass>()
.ForMember(dest => dest.IntphoneNo,
opt => opt.MapFrom(src => src.Stringphoneno));
IntphoneNo 是 DataType int ( IntphoneNo 是我的类 Person
的一个变量)源属性 Stringphoneno 是数据类型字符串。
当我映射时,我收到以下错误。
AutoMapper.AutoMapperMappingException"类型为"AutoMapper.AutoMapperException"的异常发生在 AutoMapper 中.dll但未在用户代码中处理
但是当我将 IntphoneNo 的数据从 int 更改为字符串时,我的程序已成功运行。
不幸的是,我无法更改模型中的数据类型
有什么方法可以在映射中更改数据图普吗?如下所示
.ForMember(dest => dest.IntphoneNo,
opt => opt.MapFrom(src => src.Int32(Stringphoneno));
经过一番研究,我又向前迈进了一步..
如果我的字符串号码是 = 123456
然后以下代码正在工作。我不需要将其解析为字符串
Mapper.CreateMap<SourceClass, DestinationClass>()
.ForMember(dest => dest.IntphoneNo,
opt => opt.MapFrom(src => src.Stringphoneno));
但是当我的 StringPhoneNo = 12 3456(12 之后有一个空格)时,我的代码不起作用。有没有办法在自动映射器中修剪 Stringphoneno 中的空格(我从网络服务获得的 Stringphoneno)。
像下面这样的东西..
Mapper.CreateMap<SourceClass, DestinationClass>()
.ForMember(dest => dest.IntphoneNo,
opt => opt.MapFrom(src => src.Trim(Stringphoneno)));
Mapper.CreateMap<SourceClass, DestinationClass>()
.ForMember(dest => dest.IntphoneNo,
opt => opt.MapFrom(src => int.Parse(src.Stringphoneno)));
以下是使用所描述的映射的一些示例工作代码
class SourceClass
{
public string Stringphoneno { get; set; }
}
class DestinationClass
{
public int IntphoneNo { get; set; }
}
var source = new SourceClass {Stringphoneno = "8675309"};
var destination = Mapper.Map<SourceClass, DestinationClass>(source);
Console.WriteLine(destination.IntphoneNo); //8675309
您可能面临的问题是当它无法解析字符串时,一种选择是使用 ResolveUsing:
Mapper.CreateMap<SourceClass, DestinationClass>()
.ForMember(dest => dest.intphoneno, opts => opts.ResolveUsing(src =>
double.TryParse(src.strphoneno, out var phoneNo) ? phoneNo : default(double)));
Yuriy Faktorovich
的解决方案可以通过定义一个扩展方法来IMappingExpression
和使用一些自定义属性,推广到所有应该转换为int
s的string
:
[AttributeUsage(AttributeTargets.Property)]
public class StringToIntConvertAttribute : Attribute
{
}
// tries to convert string property value to integer
private static int GetIntFromString<TSource>(TSource src, string propertyName)
{
var propInfo = typeof(TSource).GetProperty(propertyName);
var reference = (propInfo.GetValue(src) as string);
if (reference == null)
throw new MappingException($"Failed to map type {typeof(TSource).Name} because {propertyName} is not a string);
// TryParse would be better
var intVal = int.Parse(reference);
return intVal;
}
public static IMappingExpression<TSource, TDestination> StringToIntMapping<TSource, TDestination>(this IMappingExpression<TSource, TDestination> expression)
{
var srcType = typeof(TSource);
foreach (var property in srcType.GetProperties().Where(p => p.GetCustomAttributes(typeof(StringToIntConvertAttribute), inherit: false).Length > 0))
{
expression.ForMember(property.Name, opt => opt.MapFrom(src => GetIntFromString(src, property.Name)));
}
return expression;
}
为了完成这项工作,必须执行以下步骤:
源和目标之间的映射必须追加映射扩展。 例如:
var config = new MapperConfiguration(cfg => { // other mappings cfg.CreateMap<SrcType, DestType>().StringToIntMapping(); });
将属性应用于必须自动转换为整数值的所有源字符串属性
这是一种更简单但可扩展性较低的方法。每当您调用 Mapper.Initialize 时,请记住调用 。ToInt() 否则你会收到运行时错误。
public class NumberTest
{
public static void Main(string[] args)
{
Console.WriteLine("".ToInt());
// 0
Console.WriteLine("99".ToInt());
// 99
}
}
public static class StringExtensions
{
public static int ToInt(this string text)
{
int num = 0;
int.TryParse(text, out num);
return num;
}
}
// Use like so with Automapper
.ForMember(dest => dest.WidgetID, opts => opts.MapFrom(src => src.WidgetID.ToInt()));