我在Global.asax中有一个模型绑定器:
ModelBinders.Binders.Add(typeof(string), new StringModelBinder());
我有一个模型,我想忽略其中一个字符串属性的绑定器:
public class MyModel
{
...
public string StringProp { get; set; }
...
}
例如StringModelBinder修剪我的字符串。但我不想修剪StringProp。在这种情况下如何忽略活页夹?
EDITED: 我不是在寻找修剪弦的解决方案。我正在寻找一种解决方案来忽略修剪某些字符串。