Abp.io 中 IShouldNormalize 的替代方案是什么?

What is the IShouldNormalize's alternative in Abp.io?

我有一个项目,它是在 Abp.io 框架中创建的。我之前使用 ASP.NET Boilerplate 框架和 ASP.NET Boilerplate 具有 IShouldNormalize 接口用于规范化请求的输入。但我在 Abp.io

中找不到 IShouldNormalize 的替代方案

IShouldNormalizeAbp.io中的替代方案是什么?

No alternative. You can use IValidatableObject for validation and simple normalization. You can add your own method and call in the application service.

But we suggest you to make it in your application service method explicitly

https://github.com/abpframework/abp/issues/1908

您可以根据需要使用 IValidatableObject 进行验证和规范化。

IValidatableObject 只有一个名为 Validate 的方法,您可以在此处定义您通常在 Normalize[=24 中执行的规范化规则=] IShouldNormalize 接口的方法。