Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
104 views

Duck typing / dynamic proxies on existing instances of objects

I have an object handed into our library and passed through various processes. I need to attach some additional information to these objects as they pass through various stages and out the other end - ...
2
votes
2answers
133 views

LinFu IoC Best Practices on High Traffic Websites

We’re in the final stages of putting together a quite high traffic website (approx 6 million page impressions per week) and are using LinFu as the IoC container within the new architecture. We have a ...
2
votes
1answer
211 views

Creating LinFu interceptors for all types within an assembly

I'm trying to create LinFu interceptors for all methods in my DAL assembly. While I can do something like this: [Intercepts(typeof(IFirstRepository))] [Intercepts(typeof(ISecondaryRepository))] ...
2
votes
1answer
700 views

LinFu version in NHibernate 2.1

I'm migrating the data layer of our application to NH version 2.1.0 (from 2.0.1) and noticed the use of LinFu. I discovered that framework and want to use it in other pieces of the application, ...
1
vote
1answer
84 views

is linfu 2.3 released anywhere?

i see projects and articles that reference linfu.core version 2.3 but when i go to the linfu website here, i only see version 2.2. does anyone know where to download linfu.core version 2.3 ??
1
vote
2answers
271 views

Finding target of LinFu proxy object

This is pretty much a duplicate question but instead of using Castle Dynamic Proxy I'm using LinFu http://stackoverflow.com/questions/1415675/getting-underlying-type-of-a-proxy-object I'm using ...
1
vote
0answers
323 views

LinFu - can't quite see how to do what I want

Just found LinFu - looks very impressive, but I can't quite see how to do what I want to do - which is multiple inheritance by mixin (composition/delegation as I'd say in my VB5/6 days - when I had a ...
1
vote
0answers
256 views

ninject Linfu databound proxy object

I have the following scenario. I have a ViewModel object (It's just a regular object, that impliments INotifyPropertyChanged). I'm binding this object to a view, written in WPF. When I bind it it ...
1
vote
1answer
954 views

Dynamic Proxy generation with LinFu

I am trying to build a dynamic proxy for an interface with LinFu. The proxy should just implement the getter methods of the properties that are defined by the interface and return for instance a value ...
0
votes
2answers
255 views

cost of .net dynamic proxies

What is the cost of using dynamic proxies? I do not want to clutter my project with Interface Implementations, so I am considering using Dynamic proxies created by some 3rd party library like LinFu , ...
0
votes
0answers
40 views

asp.net-mvc site (with Linfu) error while debugging: Unable to find a service named 'images'

i have an asp.net-mvc website and i am using Linfu for my Ioc framework. I just started getting this error when debugging my site while a few of the pages load. Unable to find a service named ...
0
votes
0answers
90 views

LINFU Creation of View Wrapper

I need to create a dynamic object that implements a view. For instance, if I have a view: public interface IMyView { int Key { get; set; } string Name { get; set; } void DoSomething(); } ...
0
votes
1answer
56 views

Late Binding with LinFu & Oracle.DataAccess

is there a good example of the late binding features of the LinFu framework? I developed a framework which is hard linked against a certain version of an Oracle client. Now I would like to be able to ...
0
votes
2answers
657 views

castle dynamic proxy creation

I am implementing a design where my layer would sit between client and server, and whatever objects i get from server, i would wrap it in a transparent proxy and give to the client, that way i can ...