public class MyEntity : ITableEntity
{
#region ITableEntity properties
public string PartitionKey { get; set; } = null!;
public string RowKey { get; set; } = null!;
public DateTimeOffset? Timestamp { get; set; }
public ETag ETag { get; set; }
#endregion
public string Test { get; set; } = null!;
}
The ETag is defined in Azure.ETag.
Also there is a struct named ETag in the Stef.Azure.ETag.
The builder uses the full namespace:
private Lazy<Azure.ETag> _eTag = new(() => default(Azure.ETag));
However this fails.
The
ETagis defined inAzure.ETag.Also there is a struct named
ETagin theStef.Azure.ETag.The builder uses the full namespace:
However this fails.