Question: There is one Author Table, one Book table and one Author and Book table. Author table public class Author { public int AuthorID { get;
There is one Author Table, one Book table and one Author and Book table.
Author table
public class Author
public int AuthorID get; set;
public string Name get; set;
public string Surname get; set;
public ICollection AuthorandBooks get; set;
Book table:
public class Book
public Guid BookID get; set;
public string BookName get; set;
public string BookType get; set;
public DateTime PublicationDate get; set;
Now our rd table will bring AuthorID and BookID.
eg
AuthorID BookID
There will be million book data, like book book and we will return it with the web api.
I set up the architecture, created the classes, but I could not load data by opening a console application. I couldn't create the controller and I couldn't create the part where I wanted it to fetch a table. Please help me
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
