如何使用 SubSonic 3 处理关系SimpleRepository
?例如:拥有作者和书籍(见下文)我希望在书籍被持久化时保持分配的作者。
[Serializable]
public class Book
{
public int Id { get; set; }
public string Title { get; set; }
public Author Author { get; set; }
}
[Serializable]
public class Author
{
public int Id { get; set; }
public string Name { get; set; }
}