Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
590 views

Using Unity Framework & Validation Application Block to Validate Method Parameters

Question Is it posible to have the Validation.Validate() method of the Validation Application Block see each parameter of the IParameterCollection supplied by Unity as my custom UserModel? ...
6
votes
2answers
1k views

Which validation framework to choose: Spring Validation or Validation Application Block (Enterprise LIbrary 4.0)?

I am trying to choose one of the validation frameworks for a major application, and while both options seem enticing, I was wondering whether there are any specific pros and cons I should be aware of ...
4
votes
3answers
184 views

Where/when should i validate my data when using EF and POCOs?

I started a project to see what EF 4 can do with POCOs. I created a db and a custom POCO. Now i want to validate my data. For this i'm using the Enterprise Library Validation Block 5. I have no ...
3
votes
1answer
605 views

Enterprise Library Validation Application Block and Internationalization

Scenario A .NET/WPF desktop application should be localized (or in MS terms globalized) to a different language than English. That is, the UI needs to be adopted completely (labels, icons, ...). ...
3
votes
2answers
274 views

.Net Object validation

Can I use Validation Application Block, for a high performance program? I mean when I'm getting objects from a stream and I need to validate their values as I parse data coming. As I understand ...
3
votes
2answers
597 views

Why should I use PropertyProxyValidator? ASP.NET

I understand thatthe PropertyProxyValidator integrates with the ASP.NET UI. But, it cannot do client side validation. How would it be any different from throwing in a label in the UI and populating ...
3
votes
2answers
19k views

“Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Validation” exception

I am currently getting the following exception while trying to use the Enterprise Library Validation Application Block: An error occurred creating the configuration section handler for validation: ...
2
votes
2answers
187 views

Can MVC UpdateModel use Enterprise Library VAB?

...or should I say, what's the cleanest way to use Enterprise Library 5 VAB with MVC? I currently use the form: ActionResult Save(int id, FormCollection form) { SomeModel model = ...
2
votes
2answers
264 views

Enterprise library validation application block with inheritance

I'm using Enterprise library Validation application block. abstract Class A { public int fieldA; } class B:A { } I add validators to type B. I'm not able to find the field fieldA and also even if ...
2
votes
1answer
315 views

wcf generated classes and validation application block attributes

I'm new to the validation application block and trying to use it with wcf... I have a wcf service that has data objects with validation rules defined with attributes, using the validation application ...
2
votes
3answers
2k views

C# Model Validation - Validation Application Block or DataAnnotations?

I want to add validator attributes to my domain models (in an ASP.NET MVC app), and I'm trying to decide between 2 frameworks, the Validation Application Block and DataAnnotations. They appears to do ...
2
votes
1answer
514 views

validation application block object validator not working with rulesets

Ive been battling with this issue which I originally thought may have been to do with polymorphism/inheritance affecting my validation but ive narrowed it to this... Here is the class structure.. ...
1
vote
3answers
32 views

Validate assemblies and namespaces in VAB config file

We are using version 4.1 of the validation application block. I am relatively new to it so I was wondering if it had the ability to either abstract out the configured namespaces and assemblies or ...
1
vote
2answers
330 views

Validate password length using an attribute that also accepts empty?

I would like to validate password length on edit if password is entered otherwise empty should be considered ok. I have seen suggestions to skip the attribute for the password in the edit model and ...
1
vote
1answer
149 views

Issues with inheritance and Validation Application Block's ObjectCollectionValidator

I'm sorry if this has been asked before, I tried many combinations of keywords to describe the issue but was unable to find anything on Google or SO. The problem is simple: and I have a List of ...
1
vote
1answer
178 views

WPF, EntLib: PropertyComparisonValidator does not update the UI of the compared value

I have a problem with the PropertyComparisonValidator of EntLib 5.0. I set up an simple form with an Min and a Max field. The validation is: when Min >= Max both properties are invalid. ...
1
vote
1answer
214 views

Enterprise Library 5.0 - Validation - Refresh

I am using the Validation Application Block (VAB) of the Enterprise Library 5.0. All is working well and I get the appropriate messages, but when I navigate to another tab in the tab control and ...
1
vote
1answer
326 views

Enterprise library with linq-to-sql?

I wanted to get any feedback (put out a feeler) for how the enterprise library plays with linq-to-sql generated classes. I was considering using the validation handler to provide validation ...
1
vote
1answer
130 views

wcf and Validation Application Block unit testing

I'm trying to test validation that I've setup for my wcf service. What's the best way to do it? [ServiceContract] [ValidationBehavior] public interface IXmlSchemaService { ...
1
vote
2answers
1k views

Custom validator not invoked when using Validation Application Block through configuration

I have set up a ruleset in my configuration file which has two validators, one of which is a built-in NotNullValidator, the other of which is a custom validator. The problem is that I see the ...
1
vote
2answers
596 views

Validation Application Block Questions

Has anyone used the validation application block from enterprise library? Any success? Anyways, my question is with regards to validating a numeric unique identifier. Lets say I have a Product ...
1
vote
3answers
805 views

Stack overflow when using Microsoft EnterpriseLibrary validation

I have two classes: [HasSelfValidation] class Country : DomainObject { [NotNullValidator] [StringLengthValidator(2, 10)] public string Name { get; set; } ...
0
votes
0answers
152 views

Validating subclass using Enterprise Library 5.0

Background: I have a simple 2-level hierarchy for a data contract that I am validating using the Validation Application block that comes with Enterprise Library 5. I use HasSelfValidation to ensure ...
0
votes
1answer
282 views

Enterprise Library 4.0 ValidationProvider Self Validation question

I am using the Validationprovider control for the 1st time. I've had limited success trying to mimic the functionality t hat I saw in the ValidationQuickStart solution example that comes with the Ent ...
0
votes
1answer
81 views

Inject values into custom VAB validator?

I'm building a mvc webapp that shares model objects with an existing winforms app. I'm introducing VAB validation into it. One of the items I need to validate is an int that can be one of x levels. ...
0
votes
1answer
144 views

Performing validation of a Business object. What about the contained objects?

I am new to Enterprise Library. I am trying to validate a Business Object of type JuvenileClientContactItem. TheJuvenileClientContactItem objects itself has contained objects, in this case, two ...
0
votes
1answer
458 views

Enterprise Library 5.0, Validation in abstract base class

my business layer uses an abstract base class called DomainObject that implements IDataErrorInfo to offer validation-binding for WPF. When I call the "Error" property implemented in the base class, no ...
0
votes
1answer
508 views

Validate This EF4 Validation Approach?

I'm very new to EF4. I've posted a couple of times I think regarding inheritance, validation but my overall aim is to reduce the amount of code I write as much as possible. I'm not interested (yet) in ...
0
votes
1answer
68 views

How can you get the first validation error on a property only using Validation Application Block?

If I have two validators, a NotNullValidator and a StringLengthValidator, is there a way to get only a Null Validation Error and not both. For example: public class Test { ...
0
votes
1answer
115 views

Making validation part of application settings

I am looking for examples of configuration based validation using Validation Application Block. I've found this I want to ask if someone has an alternative solution to using EL VAB 5.0 to achieve ...
0
votes
1answer
343 views

Validation Application block and model localization

I can use ErrorMessageResourceName and ErrorMessageResourceType to translate rules into my language. But how do I translate class name and properties? Currently I get something like ...
0
votes
1answer
639 views

MS Validation Block or Workflow Rules engine?

For a large application that will be developed, we are in the process of selecting a Validation framework. Although the Workflow Rules engine is not strictly a Validation framework, it can be used by ...
0
votes
2answers
111 views

Validate interface using IoC

I have a domain model that uses IoC with Microsoft Unity. For the validation I use VAB and I decorate the interface, not the entity. The code the following: interface IJob : IValidable { ...
0
votes
2answers
866 views

.NET WinForms and the enterprise library validation application block

I have a TextBox whose value is passed to an int property in an object after being parsed to an int. When I use a ValidationProvider this conversion step is ignored when validating and I get an error ...
0
votes
1answer
504 views

How do I create a custom validator in VAB that tests two properties at once?

In my database, I have a composite unique key constraint (CustomerId, Name) on a entity. I want to test if the unique constraint is upheld before submitting changes to the database. The user can ...