Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am getting sql db as service ,i want to bind them to controls in wpf . if there is any db we can just simply drag and drop the tables,save it then we can get datacontext and we can perform operations on it. is there any way to use wcf service in the same way.plz tell me step by step and detailed explanation ,i went thru all the links in net,but not able to understand them.plz help me .

i want to bind those tables from the database( given to me as webservice);if the db is not a service we can do it in drag and drop manner and write datacontext code ,can we do it in similar manner for a webservice,i cant get this

share|improve this question
1  
At some point later in life, when you have learned a bit more about programming, WPF and such, you will look back to this thread and laugh your ass off and remember the good old days where you were taking your first steps. – edvaldig Dec 13 '11 at 9:44
thanks ,solved myself – user887120 Dec 15 '11 at 5:09

closed as not a real question by casperOne Dec 13 '11 at 18:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

The easiest way to present db data client side is a GridView bound to a DataSet so you want a WCF service with a method that returns a DataSet. If you goole around those 2 things (WCF return DataSet, Binding DataSet to GridView) you will find a host of resources.
Becareful at beginning to test with small data sets as with larger data you may run into maxReceivedMessageSize issues (google this to resolve).

share|improve this answer
thank u ricob , i solved it myself – user887120 Dec 15 '11 at 5:09

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