Astoria query Cheat Sheet
Posted by: Williams .Net Zone,
on 04 Nov 2008 |
View original | Bookmarked: 0 time(s)
Samples Data Model: Query Samples: Below are some samples of using Astoria to query against the model. I tried to hit the most popular that will hit most of the features, but far from complete. Please let me know others you would like to see and I will keep adding. var db = SocialEntities.GetDB(); // Get the DataContext. // Navigation1.var q = from u in db.Users where u.UserID == 2 from en in u.Entries select en;//http://localhost:7777/RestService.svc/Users(2)/Entries() //Navigation2.var q3 = (from...