gpt4 book ai didi

entity-framework - 如何找到属性(property)的持有人

转载 作者:行者123 更新时间:2023-12-01 11:11:27 25 4
gpt4 key购买 nike

在 Entity Framework 的以下示例中,如何使用 linq 查找指定书籍的作者:

public class Author
{
public int Id { get; set; }
public string AuthorName { get; set; }
public ICollection<Book> Books { get; set; }
}

public class Book
{
public int Id { get; set; }
public int Title { get; set; }
}

谢谢。

最佳答案

假设您有一组作者,您只需做

var author = authors.SingleOrDefault(x=> x.Books.Any(y=> y.Title.Equals(bookTitle, StringComparison.OrdinalIgnoreCase))

这假设书籍只有一位作者。

关于entity-framework - 如何找到属性(property)的持有人,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59781520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com