The Code below shows how to make contact with the table of a database.
Just add a table attribute to your Model class as below,
[Table("MyTableDb")]
public class myModel {
public string Name { get; set; }
public string EmbedCode { get; set; }
public string Description { get; set; }
}
The attribute '[Table("MyTableDb")] allows your application to communicate with the table(MyTableDb) in the database.