public static implicit operator GatewayId(System.Guid value)
It makes no sense. This is a bug.
public static implicit operator GatewayId(System.Guid value) represents a cast "to" the primitive, so what [ValueObject] does is the correct behavior here.
Describe the bug
This:
Generates this:
Whereas this:
Generates this:
It makes no sense. This is a bug.
public static implicit operator GatewayId(System.Guid value)
represents a cast "to" the primitive, so what[ValueObject]
does is the correct behavior here.Steps to reproduce
Outlined above.
Expected behaviour
should do what
does.