我的意图是......无法加密'TSource'中的任何属性值, 它可能是全部或部分属性依赖于选择器。
这是我以前的代码:
...IEnumerable<TSource>().ForEach(delegate(TSource ts)
{
ts.prop0 = ts.prop0.Encrypt();
ts.prop1 = ts.prop1.Encrypt();
Etc...
});
IEnumerable Extension:
...ForEach<TSource>(this IEnumerable<TSource> source, Action<TSource> action)
{
foreach (TSource item in source)
action(item);
}
字符串扩展名:
...string Encrypt(this string strPlainText)
{
if (!string.IsNullOrEmpty(strPlainText))
return SomeClass.Encrypt(strPlainText);
return strPlainText;
}
关键是如何将所有上面的内容转换为IEnumerable Extension,只是在行语法中,可能会或可能不会像这样:
//Encrypt all props. in Tsource.
...IEnumerable<TSource>().EncryptProp();
//Encrypt any prop. in Tsource. with selector property
...IEnumerable<TSource>().EncryptProp(ts => ts.prop0);
...IEnumerable<TSource>().EncryptProp(ts => ts.prop0,ts.prop1);
...IEnumerable<TSource>().EncryptProp(ts => ts.prop0,ts.prop1,Etc...);
我很乐意接受任何建议。
答案 0 :(得分:1)
很难确切知道如何做到这一点,因为您的代码示例不完整。但是,根据我的理解,您有一个IEnumerable<TSource>
,并且您希望对此序列中所有项目的所有属性执行相同的操作?
这需要做一些事情,首先看一下SelectMany
。这将源中的每个元素投影到一个新序列,将它们展平为一个序列。
第二件事是如何从每个元素的所有属性创建IEnumerable<TResult>
。这不是那么容易!如果您的Prop0
,Prop1
可以存储为有用的词典!
你可以使用反射。像这样:
IEnumerable<MyObject> source = ///your source
var allProperties = source.SelectMany(s =>
typeof(MyType).GetProperties().Select(p => p.GetValue(s, null));
但是,由于字符串是不可变的,如果加密生成的序列,源MyObject
实例将不会反映此更改。
如果确实想要这样做,请将您的属性存储在词典中!