If you are using Dapfor Wpf Grid, Truly this code written in C# will perform for you as you required. But still try it on other platform.
C#
Code:
//The author
class Author
{
public Author(string name)
{
Books = new List<Book>();
Name = name;
}
public IList<Book> Books { get; private set; }
public string Name { get;
Leave a comment: