Hard
Vous utilisez Visual Studio 2010 et le framework 4.0 pour créer un service de données WCF / ODATA. Vous déployez le service à l’URL suivante : http://contoso.com/Northwind.svc
Vous ajoutez l’extrait de code suivant :
01 var uri = new Uri(@"http://contoso.com/Northwind.svc/");
02 var ctx = new NorthwindEntities(uri);
03 var categories = from c in ctx.Categories 04select c;
04 foreach (var category in categories) {
05 PrintCategory(category);
06
07 foreach (var product in category.Products) {
08
09 PrintProduct(product);
10 }
11 }
Vous devez vous assurez que les données de produits pour chaque catégories sont chargées lorsque nécessaire (lazy loading). Que devez-vous faire ?
Author: Guillaume BroutStatus: PublishedQuestion passed 206 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Dot-net
1
Retrieve a list of products from a catalog in a .NET application1
How to get the first element of an array in C#1
How to use the 'using' statement in C#0
How to get the first row of a SqlDataReader in C#0
Write a LINQ query to select all rows from the first table in the dataset where the ContactName field is not null.