Exemplo n.º 1
0
		public static object Ok(Describe describe, List<List<object>> results)
		{
			return new DescribeResponse()
			{
				Query = describe,
				Columns = Describe.DescribeColumns.ToArray(),
				Results = results
			};
		}
Exemplo n.º 2
0
		public static string GetName(List<object> results)
		{
			return results[Describe.IndexOf("name")].ToString();
		}