我正在努力建立无限级别的父母和子女关系。
根据我的要求,我有父库,在每个父库中,我有与该特定库和子库相关的出版物列表。 在每个儿童图书馆中,我们都有与之相关的出版物和儿童图书馆....这个过程继续......
任何人都可以提供示例代码来实现这一目标。
这是我的样本实体:
public class LibraryEntity
{
//Library details
public Guid LibraryGuid { get; set; }
public string LibraryName { get; set; }
public string Description { get; set; }
public string ImageUrl { get; set; }
//Publications associated to this library
public List<PublicationsEntity> pulications { get; set; }
//Chils libararies
public List<LibraryEntity> childlibraries { get; set; }
}