gpt4 book ai didi

c# - Typeconverter 不适用于单个属性

转载 作者:太空宇宙 更新时间:2023-11-03 15:05:12 24 4
gpt4 key购买 nike

我有一个简单的 TypeConverter将逗号分隔的字符串转换为 IEnumerable<T>在调用我的 API 端点时缩短 url。

因此我有一个在客户端设置并传递给服务器的请求对象。所以,在服务器上它是同一个对象。

这是类型转换器的样子:

public class EnumerableTypeConverter : TypeConverter
{
private readonly Type _innerType;
private readonly MethodInfo _enumerableCastMethodInfo = typeof(Enumerable).GetMethod(nameof(Enumerable.Cast));

public IEnumerableTypeConverter(Type type)
{
// check if the type is somewhat ienumerable-like
if (type.BaseType != null && type.BaseType.IsGenericType && typeof(IEnumerable<>).MakeGenericType(type.BaseType.GetGenericArguments()[0]).IsAssignableFrom(type.BaseType) && type.BaseType.GetGenericArguments().Length == 1)
{
_innerType = type.BaseType.GetGenericArguments()[0];
}
else
{
throw new ArgumentException("Incompatible type", nameof(type));
}
}

public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) => sourceType == typeof(string) || base.CanConvertFrom(context, sourceType);
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) => (destinationType.BaseType != null && typeof(IEnumerable<>).MakeGenericType(destinationType.BaseType.GetGenericArguments()[0]).IsAssignableFrom(destinationType.BaseType)) || base.CanConvertFrom(context, destinationType);

public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
var source = value as string;
if (source == null)
return base.ConvertFrom(context, culture, value);

var temp = source.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).Select(s => TypeDescriptor.GetConverter(_innerType).ConvertFromInvariantString(s));
var castMethod = _enumerableCastEmthMethodInfo.MakeGenericMethod(_innerType);
var casted = castMethod.Invoke(null, new object[] {temp});
return casted;
}

public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
var s = value as IEnumerable<string>;
return s != null ? string.Join(",", s) : base.ConvertFrom(context, culture, value);
}
}

示例请求可能类似于

public class MyRequest 
{
[TypeConverter(typeof(EnumerableTypeConverter))]
public IEnumerable<string> Names {get;set;}

[TypeConverter(typeof(EnumerableTypeConverter))]
public IEnumerable<Guid> Ids {get;set;}
}

我用 [TypeConverter(typeof(EnumerableTypeConverter))] 装饰了属性-属性。然而,ConvertFrom - 永远不会调用方法。当我在类而不是属性上添加属性时,它正在工作。

最佳答案

对于那些仍然对可能的解决方法感兴趣的人,请查看 this线。问题可能是因为转换器是在与您的应用程序域不同的程序集中定义的。

关于c# - Typeconverter 不适用于单个属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43916331/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com