Even a proof of concept would do, even Winforms(in lieu of WPF) would do. As long it interfaces with WCF that is not returning DataSet and the desktop app is sending back the delta of data only

I'm thinking of the problem of sending back data frugally. This is possible with getting the delta only of the data, on DataSet, there's a method called GetChanges, which returns rows that is new/updated/deleted only, any untouched data are not sent back

Is there any materials out there that discusses in length a WPF that interface with WCF, and behind WCF is NHibernate. The WPF project has header and detail records(implemented in data grid(the one that must return delta only, i.e new/updated/deleted) ) ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Googling for "using WCF and NHibernate" I found this: http://lunaverse.wordpress.com/2007/05/09/remoting-using-wcf-and-nhibernate/

The UI technology (WPF/Winforms/whateva) shouldn't really matter. WCF is orthogonal to the UI technology you put on top of it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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