Query() public méthode

public Query ( string queryString ) : IEnumerable
queryString string
Résultat IEnumerable
 public void Test01()
 {
     Credentials credentials = new Credentials(ACCOUNT_NAME, KEY);
     DynamicTableContext context = new DynamicTableContext(TABLE_NAME, credentials);
     foreach (IDictionary<string, object> item in context.Query("Value1 eq 'TEST'"))
     {
         foreach (string key in item.Keys)
         {
             Console.WriteLine(key + " = " + item[key]);
         }
     }
 }
        public void Test01()
        {
            Credentials         credentials = new Credentials(ACCOUNT_NAME, KEY);
            DynamicTableContext context     = new DynamicTableContext(TABLE_NAME, credentials);

            foreach (IDictionary <string, object> item in context.Query("Value1 eq 'TEST'"))
            {
                foreach (string key in item.Keys)
                {
                    Console.WriteLine(key + " = " + item[key]);
                }
            }
        }