我正在使用“ DynamicTableEntity”(Powershell)在其中添加列。下面是我的示例代码-
$obj = New-Object "Microsoft.WindowsAzure.Storage.Table.DynamicTableEntity" "1", "0"
$obj.Properties.Add("Id", "00000000-0000-0000-0000-000000000000")
在上面的代码中,我要添加Id列,并希望将其数据类型添加到GUID,但是我不确定如何在此处定义数据类型。
有人可以帮我吗?
我尝试了这个
$obj.Properties.Add("Id", EntityProperty.GeneratePropertyForGuid("00000000-0000-0000-0000-000000000000"))
但是这里我没有得到“ EntityProperty”类。