Select the product you need help with
CRUD using Entity Framework in .NET Framework 5.0 - (Read)Article ID: 2791121 - View products that this article applies to. About Author:Collapse this table
On This PageSummary
This article covers ways to read from Entity Framework; read all the records, filtering records, group records and sort records. More informationRead all the records The code below retrieves all the record from the product database table. public static IEnumerable<Product> GetAllProduct() { //declare the data context from Entity Framework northwindEntities ctx = new northwindEntities(); //retrieve all record from the database table var result = from r in ctx.Products select r; return result; } Filtering records The code below retrieves the record, by supplying the product id, from the product database table. public IEnumerable<Product> GetProductById(int Id) { //declare the data context from Entity Framework northwindEntities ctx = new northwindEntities(); //retrieve record from the database table by id var result = from r in ctx.Products where r.ProductID == Id select r; return result; } Group records The code below retrieves all the record from the product database table and group by CategoryID. public IQueryable<IGrouping<int?, Product>> GetProductGroupBy(int Id) { northwindEntities ctx = new northwindEntities(); var result = ctx.Products.GroupBy(prod => prod.CategoryID); return result; } Sort records The code below retrieves all the record from the product database table and sorted by CategoryID. public IQueryable<Product> GetProductOrderBy(int Id) { northwindEntities ctx = new northwindEntities(); var result = ctx.Products.OrderBy(prod => prod.CategoryID); return result; } References
For more information, see CRUD using Entity Framework in .NET Framework 5.0 - (Create)
(http://support.microsoft.com/kb/2780458/en-us?wa=wsignin1.0)
. MICROSOFT CORPORATION AND/OR ITS RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, OR ACCURACY OF THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN. ALL SUCH INFORMATION AND RELATED GRAPHICS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT AND/OR ITS RESPECTIVE SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, WORKMANLIKE EFFORT, TITLE AND NON-INFRINGEMENT. YOU SPECIFICALLY AGREE THAT IN NO EVENT SHALL MICROSOFT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OF OR INABILITY TO USE THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF MICROSOFT OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES.
|
Keywords: | kbmvp kbcommunity KB2791121 |
Article Translations



Back to the top








