Azure函数未在本地创建Azure表列



我正在尝试创建一个Azure函数。在本地,我希望能够在部署之前测试我的功能。我正在使用VS代码在MacOS 11.2.3上进行开发。我使用Azurite作为我在Docker中运行的本地存储模拟器。我可以连接到本地模拟器并查看我的队列和存储。我的函数应用程序正在使用netcoreapp3.1,并且是函数v3应用程序。

我的触发器是队列接收到的新负载。我的触发器工作得很好,当我将数据写入Azure存储表时,我可以看到RowKey、PartitionKey和Timestamp。我看不到我创建的任何数据。这是我的代码:

public static class MyFunction
{
[FunctionName("MyFunction")]
[return: Table("mytable")]
public static MyObject Run([QueueTrigger("myqueue")]string queueItem, ILogger log)
{
log.LogInformation($"C# Queue trigger function processed");
var myObject = JsonConvert.DeserializeObject<MyObject>(queueItem);
log.LogInformation(JsonConvert.SerializeObject(myObject));
return myObject;
}
}

这是MyObject.cs

using System;
using Microsoft.WindowsAzure.Storage.Table;
namespace MyProject.models
{
public sealed class MyObject : TableEntity
{
public MyObject(string myProperty)
{
string PartitionMonth = DateTime.Now.ToMonthName();
string PartitionYear = DateTime.Now.Year.ToString();
PartitionKey = $"{PartitionMonth}-{PartitionYear}";
RowKey = Guid.NewGuid().ToString();
MyProperty = myProperty;
}
public string MyProperty { get; }
}
}

问题是我没有看到MyProperty列正在制作中。给队列的JSON Payload有它,我可以看到它被记录到记录器中,我只是在Azure Storage Explorer中看不到该列。每次触发函数时,我都会看到一个Row。请帮助我理解为什么我看不到我的数据。

我相信您遇到这个问题是因为您的MyProperty没有公共设置器。

请尝试更改这行代码:

public string MyProperty { get; }

public string MyProperty { get; set; }

你的代码应该运行得很好。

参考:https://github.com/Azure/azure-storage-net/blob/933836a01432da169966017f0848d7d6b05fc624/Lib/Common/Table/TableEntity.cs#L406(请参阅代码中的"强制公共getter/setter"(。

internal static bool ShouldSkipProperty(PropertyInfo property, OperationContext operationContext)
{
// reserved properties
string propName = property.Name;
if (propName == TableConstants.PartitionKey ||
propName == TableConstants.RowKey ||
propName == TableConstants.Timestamp ||
propName == TableConstants.Etag)
{
return true;
}
MethodInfo setter = property.FindSetProp();
MethodInfo getter = property.FindGetProp();
// Enforce public getter / setter
if (setter == null || !setter.IsPublic || getter == null || !getter.IsPublic)
{
Logger.LogInformational(operationContext, SR.TraceNonPublicGetSet, property.Name);
return true;
}
// Skip static properties
if (setter.IsStatic)
{
return true;
}
// properties with [IgnoreAttribute]
#if WINDOWS_RT || NETCORE 
if (property.GetCustomAttribute(typeof(IgnorePropertyAttribute)) != null)
#else
if (Attribute.IsDefined(property, typeof(IgnorePropertyAttribute)))
#endif
{
Logger.LogInformational(operationContext, SR.TraceIgnoreAttribute, property.Name);
return true;
}
return false;
}

相关内容

  • 没有找到相关文章

最新更新