Hello All,
Very simple question here--how do you get all rows from a table using the Adapter template?
I've got a table and generated classed called Category. What is the code to use to get all rows of Category as an EntityCollection?
Thanks,
Matt
EntityCollection categories = new EntityCollection(new CategoryEntityFactory()); adapter.FetchEntityCollection(categories, null);
Question 1 in the Best practises, how do I? section in the docs
You have no idea how long I looked for that! I should check the obvious places first...