コード例 #1
0
 //vezi http://robbincremers.me/2012/03/01/everything-you-need-to-know-about-windows-azure-table-storage-to-use-a-scalable-non-relational-structured-data-store/
 //2 constructori
 public EventEntry()
 {
     base.PartitionKey = "eta2u";
     base.RowKey       = RemainingTime.Seconds().ToString() + "_" + Guid.NewGuid().ToString(); //ca sa pot afisa ultimele "x" inregistrari...vezi "AzureTable Strategy.docx"
 }
コード例 #2
0
ファイル: UserDetailEntry.cs プロジェクト: lmaran/ITCongress
 public UserDetailEntry()
 {
     base.PartitionKey = "itcongress2015";
     base.RowKey       = RemainingTime.Seconds().ToString() + "_" + Guid.NewGuid().ToString(); //ca sa pot afisa ultimele "x" inregistrari...vezi "AzureTable Strategy.docx"
 }