Skip to content

Issue with same type in look-a-like namespace #60

Description

@StefH
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.

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions