public CloudTable getRelatedTo() { JObject table = null; CloudTable tableObject= new CloudTable(); try{ table = (JObject)document.GetValue("relatedTo"); }catch(CloudBoostException e){ throw new CloudBoostException(e.Message); } tableObject.document = table; return tableObject; }
public static void shouldCreateATable() { CloudApp.init("bengi123", "MjFWX9D3JqTa76tcEHt9GL2ITB8Gzsp68S1+3oq7CBE="); CloudTable table=new CloudTable("firstAppTb"); table.save(); }
public void setRelatedTo(CloudTable table) { try { document.Add("relatedTo",table.document.ToString()); }catch(CloudBoostException e){ throw new CloudBoostException(e.Message); } }