public static List <ContactData> GetAll()
 {
     using (AddressBookDB db = new AddressBookDB())
     {
         return((from g in db.Contacts.Where(x => x.Deprecated == "0000-00-00 00:00:00") select g).ToList());
     }
 }
Beispiel #2
0
        // [Column(Name = "deprecated")]
        // public string Deprecated { get; set; }

        public static List <GroupData> GetAll()
        {
            using (AddressBookDB db = new AddressBookDB())
            {
                return((from g in db.Groups select g).ToList());
            }
        }
Beispiel #3
0
 public List <ContactData> GetContacts()
 {
     using (AddressBookDB db = new AddressBookDB())
     {
         return((from c in db.Contacts
                 from gcr in db.GCR.Where(p => p.GroupId == Id && p.ContactId == c.Id && c.Deprecated == "0000-00-00 00:00:00")
                 select c).Distinct().ToList());
     }
 }