Closed maleet closed 4 years ago
Not related, but there's another bug-like code example:
public class Target
{
public Other Type { get; set; }
public Guid Ref { get; set; }
}
/// Generated:
public Target MapTarget(Target target)
{
return new Target()
{
Type = MapOther(target.Type),
Ref = new Guid(a: 0, b: 0, c: 0, d: 0, e: (byte)target.Ref.GetHashCode(), f: 0, g: target.Ref.ToString(), h: 0, i: 0, j: 0, k: 0),
Expression = target.Expression
};
}
Good catch! Thanks for reporting this issue.
@maleet should be fixed in v1.16.411 Please let me know if it's working as expected.
Generated code have dublicates - two Exporession assignements