public TableStorageEntityContainer(TableStorageModel model)
     : base("AzureTableStorage", "DefaultContainer")
 {
     throw new System.NotImplementedException();
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the EdmEntityContainer class and sets the model and entity set. The name and namespace should not matter since we look for default entity container.
 /// </summary>
 /// <param name="model">Sets the data model that will be used for table transactions. </param>
 public TableStorageEntityContainer(TableStorageModel model)
     : base(Constants.EdmEntityTypeNamespaceName, Constants.EdmEntityTypeName)
 {
     this.model     = model;
     this.tablesSet = this.AddEntitySet(Constants.EntitySetName, this.model.TableType);
 }
 /// <summary>
 /// Initializes a new instance of the EdmEntityContainer class and sets the model and entity set. The name and namespace should not matter since we look for default entity container.
 /// </summary>
 /// <param name="model">Sets the data model that will be used for table transactions. </param>
 public TableStorageEntityContainer(TableStorageModel model)
     : base(Constants.EdmEntityTypeNamespaceName, Constants.EdmEntityTypeName)
 {
     this.model = model;
     this.tablesSet = this.AddEntitySet(Constants.EntitySetName, this.model.TableType);
 }