User-505443061 posted
Hi,
property "Result" of retrievedResult should contains the value you are looking for.
For example:
TableOperation retrieveOperation = TableOperation.Retrieve<Person>("1","1");
// Execute the retrieve operation.
TableResult retrievedResult = table.Execute(retrieveOperation);
retrievedResult contains object of type Person.
I.e. Person is defined in this way:
public class Person: TableEntity
{
public Person(string partitionKey, string rowKey, string firstName, string lastName, double salary)
:base(partitionKey, rowKey)
{
FirstName = firstName;
LastName = lastName;
Salary = salary;
}
public Person():base() { }
public string FirstName { get; set; }
public string LastName { get; set; }
public double Salary { get; set; }
}
Bye