Skip to content

GetWhereAsync not working with Equals method #34

@adamfoneil

Description

@adamfoneil

lambda expression type not supported. I was trying this

var customer = await cn.GetWhereAsync<Customer>(model => model.Path.Equals(blob.CustomerPath));

but it didn't like me using Equals. I had to re-phrase like this

var customer = await cn.GetWhereAsync<Customer>(model => model.Path == blob.CustomerPath);

and it worked -- but the first case should work

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions