/// <summary> /// Select all contacts /// </summary> private void SelectAllContact() { if (Contacts == null || !Contacts.Any()) { return; } Contacts.All(x => x.IsChecked = SelectAll); }
public List<dynamic> GetAll() { //var table = new DynamicModel("AdventureWorks", "Person.Contact", "ContactID"); var table = new Contacts(); return table.All().ToList(); //return table.Query("SELECT * FROM Person.Contact").ToList(); //dynamic table = new Contacts(); //return (table.Find() as IEnumerable<dynamic>).ToList(); }
public async Task OnGetAsync() { ContactList = await _contacts.All(); System.Console.WriteLine("Contact List Count: {0}", ContactList.Count()); }
protected override bool OnSaveCanExecute() { return(Customer != null && !Customer.HasErrors && Contacts.All(x => !x.HasErrors) && HasChanges); }