Skip to content
New issue

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

ValueParser doesn't generate *-parsersmap attribute when declared in Metadata #198

Open
bouskdav opened this issue Jun 18, 2019 · 0 comments

Comments

@bouskdav
Copy link

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"}" )

but when one puts this ValueParser attribute to property Price in class Foo itself, it's generated correctly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant