ĐÀO TẠO DOANH NGHIỆP : SỞ KHOA HỌC CÔNG NGHỆ TỈNH ĐỒNG NAI

ENTERPRISE TRAINING: DONG NAI DEPARTMENT OF SCIENCE AND TECHNOLOGY.

123

Thursday, August 20, 2015

Bulk Insert/Update/Delete Items from SharePoint List/Library

Bulk Insert/Update/Delete Items from SharePoint List/Library   We have the sharepoint list like as below Create console project to run the code    Code here  Before run => remember change Target framework to 3.5 (i using visual 2010 and sharepoint 2010)  Run application  The result here but have problem with "Throttling" the next topic i will guide to you how to disable it in special...

How to update only one field using Entity Framework

 How to update only one field using Entity Framework   var tableEmployee = new T_Employees() { EmployeeID = item.EmployeeID , IsDisplayRequired = item.IsDisRequired };                 using (var db = new DBEntitiesContext())                 {                     db.Configuration.ValidateOnSaveEnabled...

MVC 5 Insert Update Delete CRUD Functionality using EF

MVC 5 Insert Update Delete CRUD Functionality using EF Download project at here: http://www.mediafire.com/download/2s4mwu2vcunlx9d/MVC5.7z 1. Continue with previous article at link: http://www.microsofttechnology.net/2015/08/insert-update-and-delete-data-in-mvc5.html.  Create new class in Models folder call is EmployeesModel at image below 2. Writing code like below 3. Create new controller (Empty) 4. Name is EmployeesController 5....