As you know NHibernate 3.2 has native bytecode provider, which has some breaking changes with castle bytecode provider.

For example:

public class SomeEntity 
{
    public virtual string SomeProperty { get; **private set;**} 
}

Is working fine with NHibernate 3.1 and Castle Bytecode provider. And not in NH 3.2.

I'm using nuget for managing my dependencies and do not want to manage them by hands. So my question is: would bytecode providers for castle, linfu and spring be available in nuget?

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

The NHibernate team won't support those bytecode providers any more.

It hasn't been officially voted, but I don't think the Castle team will support it either.

Fortunately, this is all open source, so you can just go ahead and grab the code and maintain it and put it on NuGet. It could be either a NHibernate contrib or a Castle contrib project.

Still, if this used to work and doesn't anymore (and the change isn't documented, make sure it isn't), it could be a regression bug, and so it should be reported (make sure it hasn't been reported already) and fixed.

link|improve this answer
2  
I've asked this question in nhusers group groups.google.com/d/topic/nhusers/4DYY6RGIgZk/discussion – hazzik Aug 14 '11 at 7:26
@hazzik I have this problem too, and I now see that your issue is closed by Fabio as "Not an issue". Do you have more information why this is so? – Mr Happy Jan 5 at 11:06
feedback

NHibernate 3.2 has introduced quite a number of undocumented breaking changes, particularly for those folks previously using the Castle bytecode provider.

link|improve this answer
9  
Very true, Joseph, and it's been frustrating me to no end. The NH team seems to be in denial of this fact, as well. – James Nail Aug 25 '11 at 16:14
It may be a great sacrifice, but worth it to me to drop from 5 dlls to just 2 – Dann Sep 8 '11 at 15:03
1  
good sacrifice IMO unless you are using Medium Trust environments! – Rippo Sep 12 '11 at 7:29
I'm also struggling with these breaking changes, with no end currently in sight... – Tom Bushell Dec 20 '11 at 22:32
Would ILMerge.exe help with the dlls? – ShortRound Mar 10 at 19:03
feedback

I support having only 2 DLLs instead of the many 5. That would help also if you want to extend functionality.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.