public void GetSizeTest()
		{
			var tableEntity = new DynamicTableEntity("TestPartitionKey", "TestRowKey");

			tableEntity.AddProperty("suppa", "duppa");

			tableEntity.AddProperty("suppa2", 10);

			var size = tableEntity.GetSize();
		}
		public void GetSizeNullTest()
		{
			var tableEntity = new DynamicTableEntity("TestPartitionKey", "TestRowKey");

			tableEntity.AddProperty("suppa", "duppa");

			tableEntity.AddProperty("suppa2", 10);

			tableEntity.Properties.Add("suppa3", new EntityProperty((Int32?) null));

			tableEntity.Properties.Add("suppa4", new EntityProperty((Byte[]) null));

			var size = tableEntity.GetSize();
		}