Tagged Questions
The nhibernate-validator tag has no wiki summary.
10
votes
4answers
1k views
Which validation library for ASP.NET MVC?
I'm trying to decide what validation approach to take for a new ASP.NET MVC project. (And wow there are plenty of options!)
The project uses NHibernate, so the first thing I considered was the ...
5
votes
1answer
307 views
upgrading NHibernate and NHibernate Validator w/ Nuget
As of the today, the Nuget release of NHibernate Validator is 1.3.1.4000 and says it has a dependency >= NHibernate 3.1.0.4000, which implies it should work with latest NHib 3.2.
But NHib 3.2 now has ...
5
votes
3answers
261 views
fluentnhibernate and nhibernate validator version error
We have a project using FluentNibernate to map the entities. Now I need to add some format validation to these maps. For Nullable, Length and such we are currently using the mappings. I added ...
4
votes
1answer
139 views
NHibernate Validator throws System.NotSupportedException after upgrading to 3.1
Has anyone encountered this?
After upgrading to NHibernate 3.1, I am receiving the following exception from NHibernate Validator when running NUnit test cases:
System.NotSupportedException : The ...
4
votes
2answers
599 views
xVal in MVC.NET with nHibernate.validator does not fire client validation
I have an ASP.NET MVC Project working with NHibernate and NHibernate.Validator and i'd like to use xVal 1.0 (most recent release).
I Added the requested scripts to the project and referenced it in ...
3
votes
1answer
83 views
NHibernate validator performance
What do you know about NHibernate validator performance? I plan to use it, but it use reflection and I worry about performance...
2
votes
2answers
248 views
NHibernate Validator Dynamic rules
I'm using Nhibernate and I have a requirement that the validation rules must change in time. The framework I'll use is NHibernate validator, but I don't really know how to make dynamic rules, the ...
2
votes
1answer
284 views
How to use Nhibernate Validator + NHib component + ddl
I just configured my NHibValidator. My NHibernate creates the DB
schema. When I set MaxLenght="20" to some property of a class then in
the database the length appears in the database column. I am ...
2
votes
1answer
413 views
NHibernate Validator - passing resource manager and key
According to the NHibernate Validator documentation here:
http://nhforge.org/wikis/validator/nhibernate-validator-1-0-0-documentation.aspx
I should be able to pass my resource manager so I can use ...
1
vote
1answer
32 views
NHibernate.Validator: when saving entity, my custom messages aren't available, how can I get them?
I'm using NHibernate.Validator with the Loquacious ValidationDef configuration style.
For all my rules I use WithMessage to set a custom message when the value is invalid. The messages are codes that ...
1
vote
0answers
29 views
How to update schema when Validator attributes have changed?
I build my SessionFactory like this:
_configuration = LoadConfiguration(configFile);
if (_configuration == null)
{
Fluently.Configure()
.Database(configurer.GetConfigurer())
...
1
vote
2answers
75 views
NHibernate and NHibernate Validation
Is it possible to validate domain model with Nhibernate validation framework in PreTranctionCommint event? If possible how we can write this event ?
1
vote
2answers
113 views
Validation for Windows Forms Apps with Nhibernate
I've been using Nhibernate (with fluent nhibernate mapping) in a windows forms application and to do some validation and binding, I've been using NHibernate Validator too and when we try to validate ...
1
vote
1answer
114 views
NHiberate Validator start date before end date
Using Nhibernate Validator (with S#harp Architecture / MVC3), how can I write a custom attribute, preferably not object-specific (since this is a fairly common requirement) that enforces that ...
1
vote
1answer
121 views
NHibernate Validator initialization is very slow with ValidatorMode.OverrideAttributeWithExternal
Is there any way of speeding up the time NHibernate Validator takes to initialize when the default validator mode is set to ValidatorMode.OverrideAttributeWithExternal?
It takes over 11 seconds to ...
1
vote
1answer
178 views
NHibernate Validator: event listener regards attributes but not ValidationDefs
I have this entity in my project:
public class Employee : Entity
{
protected Employee()
{
Departments = new List<Department>();
}
[NotNullNotEmpty]
public virtual ...
1
vote
1answer
463 views
NHibernate Validator not integrating with Fluent NHibernate
I'm having some trouble getting NHV to work with Fluent NHibernate. A unit test that I have that has an entity that SHOULD be failing validation ends up throwing an ADO exception. I have NHV ...
1
vote
3answers
255 views
NHibernate Validator and Schema Export question
I'm learning to use NHibernate validator and it's Fluent API (Loquacious).
I have noticed is that I can't set an integer property or nullable int property (int?) to be not nullable. Well, why not?
...
1
vote
1answer
342 views
How to get interpolated message in NHibernate.Validator
I'm trying to integrate NHibernate.Validator with ASP.NET MVC client side validations, and the only problem I found is that I simply can't convert the non-interpolated message to a human-readable one. ...
1
vote
1answer
438 views
Configuring NHibernate Validator on a Burrow ASP.net Application
I'm looking for the best way to configure NHibernate Validator on a classic ASP.net app that is using NHibernate Burrow to manage NH sessions.
How do I get it to register the interecptors ...
0
votes
0answers
20 views
Spring databinding - Jodatime - stop altering of entered date
On my request object I have a mutabledatetime to represent the birthdate of the user.
Now I've bound 3 input fields to the mutabledatetime instance variables using the setYear/Month/Day methods.
The ...
0
votes
0answers
68 views
ASP.NET MVC 3 with unobtrusive client side validation and NHibernate Validator
When I enable the jQuery unobtrusive client side validation in MVC 3 the messages that are displayed from NHibernate Validator don't show up correctly. Instead of translating the message from the ...
0
votes
1answer
28 views
nhibernate validator (1.3.1) localizing error messages
I created an unit test case for displaying error messages in a different language than English but it doesn't seem to work and I don't know what I am missing.
Here are the details:
I am using ...
0
votes
0answers
17 views
NHibernate Validator throwing and catching sqillions of MappingExceptions (property not found)
After upgrading from NHibernate 2 to 3.1, NHibernate Validator is throwing and catching tons of MappingExceptions with the message "property not found: myProp on entity MyEntity".
The stack trace is:
...
0
votes
0answers
19 views
How to Fluent NHibernate Validator constraints naming?
I would like to have a naming scheme for the constraints I add via object attributes (NotNull, Min(1)). Currently, Oracle is taking charge of the naming of these, which results in really ugly and ...
0
votes
1answer
192 views
Configuring Fluent NHibernate and NHibernate Validator
I am struggling to get Fluent NHibernate and the NHibernate Validator working together and there seems to be a lack of documentation on the internet about the best way to do this. I have found a few ...
0
votes
0answers
53 views
NHibernate emitting incorrect where clause for NULL Id
I am using Sharp Architecture with a MySQL database and I am trying to get the HasUniqueDomainSignature class annotation to work.
Despite a very simple string property annotated with DomainSignature ...
0
votes
2answers
229 views
Nhibernate Validator
In my unit tests I am getting an error when I am debugging. The weird thing is I do not get this whenever I just run the test (it's only when debugging a test). I get an exception whenever I try to ...
0
votes
2answers
203 views
Nhibernate Validator for Nhibernate 3.1
Is there a version that works with Nhibernate 3.1? Currently I have a version that is looking for 2.1.2.4000. Is there something I can change to be able to use the old Nhibernate Validator with the ...
0
votes
2answers
596 views
MVC 3, NHIbernate Validators & Message Interpolator
I have followed this article and have a passing test showing custom validation error messages being returned from a resource file when a call to Validator.IsValid(someEntity) fails.
I am trying to ...
0
votes
0answers
15 views
Cinch & NHibValidator
Are any of you Cinch users also using NHib Validator?
Can you show some of the plumbing you have to use it if so?
Cheers,
Berryl
0
votes
1answer
207 views
nhibernate validator usage
Say I have a value object class, FullName, that is used as a property in an Employee entity class. The FullName may have a middle initial, nick name, etc; but from a domain perspective I would like to ...
0
votes
0answers
234 views
Schema validation HibernateException not caught by Try-Catch
I use SchemaValidator to check the integrity of the database. I thought I could put the validation in a try-catch, but it throws an exception that is not handled by the try-catch. Why is it not ...
0
votes
1answer
154 views
NHibernate DecimalMin Validator
I'm attempting to use the DecimalMin validator from NHibernates Validator library. Unfortunately, due to compiler restrictions I'm getting errors when attempting to utilize it. I'm sure its something ...
0
votes
1answer
268 views
NHibernate Validator and Null DateTime
There must be a simple solution out there, I'm trying to use NHibernate Validator attributes on my DateTime properties. If the value is null (via [NotNull]), I want it to fail validation. When I ...
0
votes
1answer
164 views
ValidatorEngine.Validate returns null (no error) if configured its ValidatorMode.UseExternal
i am integrating nhibernate validator into my application and and everything is fine with attributes
but as soon as I create *.nhv.xml files and move my validation rules there (as embedded resource)
...
0
votes
1answer
640 views
System.NullReferenceException with WhoCanHelpMe Unit Test
I'm working with a test project based on WhoCanHelpMe, which is based on Sharp Architecture, NHibernateValidator, etc. As its written the when_the_profile_tasks_is_asked_to_create_a_profile unit test ...
0
votes
1answer
362 views
xVal Date Validation with Nhibernate Validator
I am using xVal with NHibernate Validator and I have a hard time to validate the dates.
First, NHibernate does not have validation for Date/DateTime formatting (except Past and Future). Second, I ...
0
votes
1answer
465 views
nhibernate validator newbie question
i have an asp.net mvc project with xval and data annotations and i need to switch to nhibernate validation
with data annotations i had an DataAnnotationsValidationRunner and i was doing something ...
0
votes
1answer
146 views
Dual NHibernate Class Level Validators Issue
I'm using WPF and I've got an Entity bound to a series of controls. The entity is decorated with two class level validators as follows:
[ExampleValidator1, ExampleValidator2]
public class Entity
An ...