FluentBuilder
FluentBuilder copied to clipboard
Issue with same type in look-a-like namespace
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.
https://github.com/StefH/FluentBuilder/pull/62