FluentBuilder icon indicating copy to clipboard operation
FluentBuilder copied to clipboard

Issue with same type in look-a-like namespace

Open StefH opened this issue 2 years ago • 1 comments

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.

StefH avatar Aug 22 '23 05:08 StefH

https://github.com/StefH/FluentBuilder/pull/62

StefH avatar May 05 '24 09:05 StefH