Skip to content

nested derived properties fail filtering #69

@pdevito3

Description

@pdevito3

something like one of the below should work

config.DerivedProperty<User>(x => x.UserProfile.FirstName + " " + x.UserProfile.LastName).HasQueryName("name");
// or
config.DerivedProperty<UserProfile>(x => x.FirstName + " " + x.LastName).HasQueryName("name");

but fails with

QueryKit.Exceptions.ParsingException: There was a parsing failure, likely due to an invalid comparison or logical operator. You may also be missing double quotes surrounding a string or guid.

Parsing failure: unexpected 'a'; expected end of input (Line 1, Column 91); recently consumed: name @=* "

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions