Erreur lors de la mise en Œuvre de l'Interface: la classe n'implémente pas l'interface de membres

Je suis en train de implémente l'IUpdatable.

Erreur De 1 'WebRole1.InfoManager' n'implémente pas l'interface de membre du Système.Les données.Services.IUpdatable.ClearChanges()'
Toutes les erreurs que je reçois sont de dire que je ne suis pas la mise en œuvre de tous les membres d'interface, mais j'applique certains pas tous bien sûr. Je n'ai pas mis le trou de code, j'espère que vous pouvez comprendre.

  using System;
  using System.Collections.Generic;
  using System.Linq;
  using System.Web;
  using System.Data.Services;
  using Microsoft.WindowsAzure;
  using Microsoft.WindowsAzure.ServiceRuntime;
  using Microsoft.WindowsAzure.StorageClient;

  namespace WebRole1
  {
     public class InfoManager : IUpdatable
     {
      private TableServiceContext context;

    //To Generate DataConnectionString and svcClient
    private TableServiceContext GetContext()
    {
    //Implemented code
    }

    public CommentManager()
    {
        context = GetContext();
    }


    //To get my table infos
    public IQueryable<Info> Infos
    {
        get
        {
            return context.CreateQuery<Info>("Infos").AsTableServiceQuery();
        }
    }
   //Creating the resource and cheking the compatibility of the type and do an add Object 

    public Object CreateResource(string containerName, string fullTypeName)
    {
        //Implemented Code
    }

    //Return the instance of the resource represented by the object 
    public Object ResolveResource(Object resource)
    {
        return resource;
    }

    public void SaveChanges()
    {
        context.SaveChangesWithRetries();
    }

    public void setValue(Object targetResource, string propertyName, Object propertyValue)
    {
    //Implemented Code
    }

}

}

OriginalL'auteur 404Dreamer_ML | 2011-03-18