Tagged Questions

0
votes
0answers
61 views

NHibernate: Lazy load a collection of data from a service, not the database

My domain objects support custom fields that are stored in such a way that requires metadata and logic to be applied before their values can be stored and retrieved. I already h …
0
votes
1answer
54 views

saving objects in NHibernate IInterceptor

Hello, I set up an IInterceptor for ILoggable objects in my domain model. And on OnFlushDirty event, i am trying to save a log (audit). But while doing this, my code goes into an …
0
votes
1answer
102 views

Register custom NHibernate Interceptor via Windsor

I created a simple AuditInterceptor: EmptyInterceptor now I wonder how can I register this new interceptor with my application using Windsor?
0
votes
2answers
59 views

Problem with Windsor Calls to “Genericized” Methods After Adding an Interceptor

I have an application that was working fine that uses Windsor for IoC. I want to log the method calls, parameters, and execution time of all calls made to components instantiated …
0
votes
1answer
233 views

Castle Interceptors With Fluent Interface

I'm trying to get an interceptor I've written to work, but for some reason it doesn't seem to be instantiating the interceptor when I request my components. I'm doing something li …
0
votes
1answer
74 views

Filtering objects OnLoad NHibernate IInterceptor

Hello, I am having a problem loading objects using NHibernate. These entities have reference to files which no longer exist. When NHibernate assigns the 'Path' property of these e …
1
vote
2answers
193 views

Castle DynamicProxy2: Get the Target inside an Interceptor?

I'm using Castle DynamicProxy2 to "tack on" interfaces to retrieve fields from a dictionary. For example, given the following class: public class DataContainer : IDataContainer { …
0
votes
3answers
361 views

NHibernate add unmapped column in interceptor

I'm trying to save a mapped entity using NHibernate but my insert to the database fails because the underlying table has a column that does not allow nulls and IS NOT mapped in my …
0
votes
0answers
360 views

Castle.Windsor Register AllTypes With An Interceptor

Why does the following not intercept calls to IBusinessService with the LogAspect? container.Register(AllTypes.Of<IBusinessService>() .FromAssembly(Assembly.GetExecuting …
0
votes
0answers
203 views

How to use Unity’s InterfaceInterceptor with Generic Interface Chain

Hi There! Right now I'm having a problem with Unity InterfaceInterceptor because it will fail when constructing the dynamic type. My classes and interfaces are something like this …
1
vote
0answers
366 views

NHibernate IInterceptor implementation(add properties to DB table that original domain class doesn’t have)

How is possible to set some special column values when update/insert entities via NHibernate without extending domain classes with special properties? for example: in my case i wo …
1
vote
3answers
361 views

NHibernate IInterceptor implementation(without extending domain classes with special properties)

How is possible to set some special column values when update/insert entities via NHibernate without extending domain classes with special properties? for example: in my case i wo …