-
Notifications
You must be signed in to change notification settings - Fork 141
Open
Description
Discussed in #153
Originally posted by flyspirit99 August 4, 2021
I started to use Sieve a couple of days ago and love it. Now I encounter a situation and don't know how to do it by Sieve
I have a one to many relationship like below
public class Company
{
public ICollection<Certificate> Certificates {get; set;}
}
public class Certificate
{
public string Name {get; set;}
public int CompanyId { get; set;}
public Company Company {get; set;}
}
In CompanyApiController.GetCompanies() action, I need to filter company by its certificate name. Is this possible?
Metadata
Metadata
Assignees
Labels
No labels