how to populate object from wcf service using linq to sql or EF? Client which consume WCF is in SIlverlight.
Populate object from wcf
Hi all,
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
MilosPosted Sep 26, 2013, 4:35 PM
Jignesh TrivediPosted Sep 25, 2013, 1:23 AM
hi,
Please refer
http://www.codeproject.com/Articles/262164/Using-WCF-Service-with-Silverlight
http://www.codeproject.com/Articles/37393/4-Simple-Steps-to-Consume-WCF-Service-using-Silver
hope this will help you.
Seshu KumarPosted Sep 25, 2013, 12:24 AM
http://www.codeproject.com/Articles/522611/Entity-Framework-CRUD-Operations-Using-Stored-Proc
Ck NitinPosted Sep 17, 2013, 3:42 AM
public IList GetUsers()
{
var result = from c in DatabasePathRepository.GetAll() orderby c.Name, c.Email select c; return result.ToList();
}