Skip to content

Instantly share code, notes, and snippets.

@jcdcdev
Created February 18, 2024 23:34
Show Gist options
  • Save jcdcdev/e8a2ccd225fa8f29c159c4d705e7a621 to your computer and use it in GitHub Desktop.
Save jcdcdev/e8a2ccd225fa8f29c159c4d705e7a621 to your computer and use it in GitHub Desktop.
public class AuthorService(IRelationService relationService)
{
public IEnumerable<int>? GetArticlesIds(int authorId) => relationService.GetByParentId(authorId, "authorToArticle")?.Select(x => x.ChildId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment