Tagged Questions
5
votes
1answer
304 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
260 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
133 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 ...
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...
1
vote
1answer
31 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
28 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
111 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
120 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
462 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
437 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
1answer
188 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
2answers
228 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
0answers
232 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
152 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
267 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 ...