Hello,
I am reading Krzysztof Koźmic's tutorial about Dynamic Proxy and I can't
figure out how to intercept all properties that have some custom attribute.

Example:

>  [Entity("MyEntityName")]
>
> public class MyEntity
>
> {
>
>     private Dictionary<string, object> dict = new Dictionary<string,
> object>();
>
>     [LookupProperty("SomeOtherEntityName")]
>
>     public virtual SomeOtherEntity SomeOtherEntity { get; set; }
>
> }
>
 In the end result I would like SomeOtherEntity to access the dict
dictionary with "SomeOtherEntityName" as the key.

Is it possible? How can it be done?

-- 
You received this message because you are subscribed to the Google Groups 
"Castle Project Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/castle-project-users?hl=en.

Reply via email to