AzurePatterns.EntityRepositoryTests.ShouldAlterEntity C# (CSharp) Method

ShouldAlterEntity() public method

public ShouldAlterEntity ( ) : void
return void
        public void ShouldAlterEntity()
        {
            // NOTE: expect the context and the repository to be managed by your IoC container.
            var context = new TableStorageContext();
            var entityRepository = new EntityRepository(context);

            var partitionKey = new ByPartitionKeySpecification("partitionKey");
            var rowKey = new ByRowKeySpecification("rowKey");

            var entity = entityRepository.GetEntity(partitionKey, rowKey);

            //// make some change to entity ...

            entityRepository.Save(entity);

            context.Commit();
        }
EntityRepositoryTests