How to add/ load/ delete items from a foreign key table in xamarin forms with sqlite-net-pcl and sqliteExtensions
问题 Hi i have this two tables ( not sure if they are written correctly) an agenda can contain many Tasks, my question is how do i write the methods to add/delete/load my tasks in my agenda, i am not sure how this work when you have a foreign key ? Thank you. Agenda.cs in the Models folder [Table("Agenda")] public class Agenda { [PrimaryKey, AutoIncrement] public int ID { get; set; } public string Topic { get; set; } public string Duration { get; set; } public DateTime Date { get; set; }