コード例 #1
0
 public static List <Class2_GroupData> GetAllGroupInfo()
 {
     using (AddressbookDB db = new AddressbookDB())
     {
         return((from g in db.Groups select g).ToList());
     }
 }
コード例 #2
0
 public List <Class3_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());
     }
 }
コード例 #3
0
 public static List <Class3_ContactData> GetAllContactInfo()
 {
     using (AddressbookDB db = new AddressbookDB())
     {
         return((from c in db.Contacts.Where
                     (x => x.Deprecated == "0000-00-00 00:00:00")
                 select c).ToList());
     }
 }