Top "Proxy-classes" questions

A proxy class is a class functioning as an interface to another class or a service.

Loading from database without proxy classes?

In Entity Framework 4 Is it possible to choose to load some queries into a POCO without it using proxy classes? (…

c# entity-framework poco proxy-classes
Web Service proxy class to implement interface

I am looking for a way to have the generated proxy class for a Web Reference (not WCF) implement a …

c# web-services interface asmx proxy-classes
NHibernate Get objects without proxy

I am using NHibernate(2.0.1.4) with NHibernate.Linq(1.0.0.4) to get Objects of the type Node from the Database. When I get …

c# nhibernate proxy-classes
Right way to return proxy model instance from a base model instance in Django?

Say I have models: class Animal(models.Model): type = models.CharField(max_length=255) class Dog(Animal): def make_sound(self): …

python django django-models proxy-classes
How do I serialize all properties of an NHibernate-mapped object?

I have some web methods that return my objects back as serialized XML. It is only serializing the NHibernate-mapped properties …

c# web-services nhibernate xml-serialization proxy-classes
building a 'simple' php url proxy

I need to implement a simple PHP proxy in a web application I am building (Its flash based and the …

php proxy php4 proxy-classes
In golang, How can I override the embedded struct's method

Code here package main import "fmt" func main() { t16() } type Base struct { val int } func (b *Base)Set(i int) { …

go polymorphism overriding proxy-classes