We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have class Foo:
public partial class Foo { public decimal Price { get; set; } }
then lets have another partial with metadata..
[MetadataType(typeof(FooMetaData))] public partial class Foo { }
then class with metadata:
public class FooMetaData { [ValueParser("cznumberparser")] public decimal Price { get; set; } }
now this ValueParser is not taken into account (as in title - doesnt generate *-parsersmap="{"Price":"cznumberparser"}" )
*-parsersmap="{"Price":"cznumberparser"}"
but when one puts this ValueParser attribute to property Price in class Foo itself, it's generated correctly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have class Foo:
then lets have another partial with metadata..
then class with metadata:
now this ValueParser is not taken into account (as in title - doesnt generate
*-parsersmap="{"Price":"cznumberparser"}"
)but when one puts this ValueParser attribute to property Price in class Foo itself, it's generated correctly.
The text was updated successfully, but these errors were encountered: