我的数据库看起来像这样:(它是伪代码)
public class thread
{
int id;
List<Post> Posts;
}
public class Post
{
int id;
}
作为输入,我有帖子 ID,我想知道该帖子在哪个线程中。我可以使用 linq 的扩展方法吗?
我的数据库看起来像这样:(它是伪代码)
public class thread
{
int id;
List<Post> Posts;
}
public class Post
{
int id;
}
作为输入,我有帖子 ID,我想知道该帖子在哪个线程中。我可以使用 linq 的扩展方法吗?