.Net Client API

To use the .Net client API, everything revolves around the MeanFiddlerContext. Create a context object with the url to the fiddler service. From there, build queries and pass in object updates.

MeanFiddlerContext context = 
    new MeanFiddlerContext(
        "http://tempuri.org/NorthwindService.fiddle");
        
Customer customer = context
    .CreateQuery<Customer>("/Customers[ANJOU]")
    .First();
    
IList<CustomerDemographic> demographics = 
    customer.CustomerDemographics;
    
foreach (CustomerDemographic demographic in demographics)
{
    demographic.CustomerDesc = "some updated value";
    context.MarkModified(demographic);
}
context.SaveChanges();