Protobuf-net 是否计划包含验证?

does Protobuf-net has plans to include validation?

有没有办法将数据注释之类的东西合并到 protobuf-net 中?我使用 fluentvalidation https://anthonygiretti.com/2020/05/18/grpc-asp-net-core-3-1-model-validation/

找到了这个

但我想要一些可以使用我在模型中定义的属性的东西,例如 Required、StringLength 等?

谢谢

不直接。验证不是 protobuf 的功能,因此 protobuf-net 本身不提供它。但是,您可以添加 before/after serialize/deserialize 回调,您可以在其中添加您喜欢的任何手动验证。