Select the product you need help with
CRUD using Entity Framework in .NET Framework 5.0 - (Update)Article ID: 2796236 - View products that this article applies to. About Author:Collapse this table
On This PageSummaryThis article covers ways to update through Entity Framework. We start with updating a single record. Update single records The code below pass in a product id as the argument then update the product name based on the product id. public static void Update(int Id) { northwindEntities ctx = new northwindEntities(); var result = from r in ctx.Products where r.ProductID == Id select r; // Get the first record from the result Product product = result.First(); // Update the product name product.ProductName = "Drinks"; ctx.SaveChanges(); } Bulk record update The code below does a bulk update to the category id to all the products. public static void BulkUpdate() { northwindEntities ctx = new northwindEntities(); var result = from r in ctx.Products select r; foreach (Product p in result) { p.CategoryID = 1; } ctx.SaveChanges(); } Bulk record update with SQL statement The follow code does bulk update with SQL statement. The disadvantage of this is that the compiler is not able to check the syntax of the SQL statement. public static void BulkUpdateSQL() { northwindEntities ctx = new northwindEntities(); ctx.Database.ExecuteSqlCommand("UPDATE Products SET CategoryID = 3"); } ReferencesFor more information, see CRUD using Entity Framework in .NET Framework 5.0 - (Create)
(http://support.microsoft.com/kb/2780458/en-us?wa=wsignin1.0)
and CRUD using Entity Framework in .NET Framework 5.0 - (Read)
(http://support.microsoft.com/kb/2791121/en-us?wa=wsignin1.0)
Community Solutions Content DisclaimerMICROSOFT 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.PropertiesArticle ID: 2796236 - Last Review: January 3, 2013 - Revision: 3.0 Applies to
|



Back to the top








