I'm possibly still missing something ... are there still two classes? (the
'real' one, and a second proxy one that inherits from it?)
-----Original Message-----
From: Michael
Sent: Tuesday, December 07, 2010 2:35 PM
To: nhibernate-development
Subject: [nhibernate-development] Re: PostSharp and static proxy
Because PostSharp implements this interface statically, on compile
time. It doesn't create proxies on the fly like castle does, for
example.
On 7 déc, 15:26, "Richard Brown \(gmail\)" <[email protected]>
wrote:
Hi Michael,
I've no idea if this helps, but out of interest why do the non-proxied
entities implement INHibernateProxy?
Richard
-----Original Message-----
From: Michael
Sent: Tuesday, December 07, 2010 2:11 PM
To: nhibernate-development
Subject: [nhibernate-development] PostSharp and static proxy
Hello all,
I've ported to PostSharp 2 and NH3 the bits ayende used to write, to
use static proxies for the entities, instead of dynamic with Castle or
LinFu.
I was hopping not to have to modify the source code of NH, but
unfortunately I can't make the static proxies work without.
All the entities implement the INHibernateProxy interface, whether
they are proxied or not. The difference between a proxied entity and a
normal entity consists on the NHibernateLazyInitializer, which is null
in the latter case, and not null in the former.
The problem I have is that in NH's code base, there are some checks on
the "proxyness" of an entity which rely only on the entity
implementing INHibernateProxy. This makes NH thinks that all the
entities are proxied, and leads to errors.
Ayende solved this problem with a few changes in NH's code base. I
thought I could avoid that, with the recent changes concerning the
decoupling from NH to the proxy part, but unfortunately I can't.
How should I fix that properly? Do I have to modify NH's bits?
Thanks in advance
Mike