vote up 0 vote down star

I am using WCF for my project and i need to transit some entities through it.

The thing is that some of them have lists inside, with an enormeous ammount of items, and so forth, i cannot pass it through WCF, given its size.

How can I, through code, not load a given property from the database, but load all the rest?

flag
Are you certain that size is the reason you can't transmit the lists? I've seen others have trouble with nHibernate because it uses the IList<T> interface for lists. – John Saunders Jul 30 at 0:01

2 Answers

vote up 0 vote down

Actually due to sirrocco I've endured myself. I a friend of mine helped me to finding this:

http://www.junasoftware.com/blog/nhibernate-setresulttransformer-and-dto.aspx

link|flag
vote up 1 vote down

By default the NH lists are lazy loaded - so unless you specified otherwise, the list will not be loaded.

However , the property will be an IProxy..something that won't be serializable. If you want you can probably set an [XmlIgnore] or [NotSerializable] (not sure how it's sent over wcf) on that specific property.

Having said that - do prefer using a DTO instead of sending your entity over the wire. See this for more about why you shouldn't send the entity.

link|flag
I was going to give up... but you know what? I am gonna deal with their shenanigans! Even if it kills me! – NoProblemBabe Jul 31 at 12:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.