gpt4 book ai didi

c# - Enterprise Library 6 验证不是从配置中读取?

转载 作者:太空宇宙 更新时间:2023-11-03 13:33:13 28 4
gpt4 key购买 nike

Enterprise Library 5 从我的 app.config 读取并完美验证。

引用以下内容:

Microsoft.Practices.EnterpriseLibrary.Common v 5.0.414.0 Microsoft.Practices.EnterpriseLibrary.Validation v 5.0.414.0

和以下配置(在 app.config 中):

<configSections>
<section name="validation"
type="Microsoft.Practices.EnterpriseLibrary.Validation.Configuration.ValidationSettings,
Microsoft.Practices.EnterpriseLibrary.Validation" />
</configSections>

<validation>
<type name="WindowsFormsApplication1.AThing" assemblyName="WindowsFormsApplication1" defaultRuleset="default">
<ruleset name="default">
<properties>
<property name="Name">
<validator type="Microsoft.Practices.EnterpriseLibrary.Validation.Validators.NotNullValidator, Microsoft.Practices.EnterpriseLibrary.Validation"
negated="false" messageTemplate="Customer must have valid no"
tag="CustomerNo" name="Not Null Validator" />
</property>
</properties>
</ruleset>
</type>
</validation>

和下面的代码:

public class AThing
{
public string Name { get; set; }
}

...
AThing bob = new AThing();
bob.Name = null;
ValidationResults vr = Validation.Validate(bob, "default");
Debug.Assert(!vr.IsValid);
...

vr.IsValid 正确地是 false(因为“Name”为 null,而我有一个 NotNull Validator)。

但是,当我替换对以下内容的引用时:

Microsoft.Practices.EnterpriseLibrary.Common v 6.0.0.0 Microsoft.Practices.EnterpriseLibrary.Validation v 6.0.0.0

并且什么都不改变,vs.IsValid 是true...

经过多次谷歌搜索和堆栈溢出后,我只找到了这个 Enterprise Library 6 validation config file ,(另一个有类似问题的用户...)(*this on CodePlex)

最佳答案

Enterprise Library 6 不会自动引导 XML 配置。这与以前的版本不同。所以现在你必须在启动时引导 block (通常)。

所以为了验证,它看起来像这样:

// Bootstrap the block at startup using default configuration file
ValidationFactory.SetDefaultConfigurationValidatorFactory(
new SystemConfigurationSource());

AThing bob = new AThing();
bob.Name = null;

ValidationResults vr = Validation.Validate(bob, "default");
Debug.Assert(!vr.IsValid);

关于c# - Enterprise Library 6 验证不是从配置中读取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19711691/

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