Hi all,
I am using this
public IQueryable<Document> GetDocuments()
{
return this.ObjectContext.Documents.Include("Company").Include("PostingStatus").Include("DocumentType").Include("Period");
}
in my domainservice but its not returning anything to the client i am using WCF RIA Services and EF4 and Silverlight.
Does this have anything to do with some changes in EF4 regarding inner and outer joins it used to work in previous version of EF but dont know whats going on wrong. Can you throw some light on this.
Thanks, Aashish Gupta