C# difference between connection.close() and connection.Dispose()
conn.Close(); //If you use this, no need to initialize SqlConnection , you can open using conn.Open();//conn.Dispose();//If you use this, it completely release the connection object and cannot be...
View ArticleAccenture .Net interview questions
Data Structure & Algorithmsc# exceptional handlingStructured Exception Handling in C#abstract class and interface differencec# must implement methodc# must inheritadvantages of using interfaces...
View ArticleC# WEB API
http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-apihttps://msdn.microsoft.com/en-us/library/hh833994(v=vs.108).aspx
View ArticleC# Single Page Application
Single Page Application: KnockoutJShttp://www.asp.net/single-page-application/overview/introduction/knockoutjs-templateSingle Page Application (SPA) Using...
View ArticleSingle Page Application with ASP.NET Web API and Angular.js
http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/build-a-single-page-application-spa-with-aspnet-web-api-and-angularjs
View ArticleJumpstart KnockoutJS with ASP.NET MVC/Web Api
http://www.codeproject.com/Articles/755386/Jumpstart-KnockoutJS-with-ASP-NET-MVC-Web-Apihttp://www.devcurry.com/2013/08/building-knockoutjs-based-client-for_16.html
View ArticleCRUD with SPA, ASP.NET Web API and Angular.js
http://www.codeproject.com/Articles/832288/CRUD-with-SPA-ASP-NET-Web-API-and-Angular-js
View ArticleGetting started with AngularJS and ASP.NET MVC
http://www.codeproject.com/Articles/806029/Getting-started-with-AngularJS-and-ASP-NET-MVC-Par
View ArticleAras Item update using AML
Step 1 lock: It will lock all revs of documents<Item type="Document" action="lock" where="[Document].item_number='ABC'"></Item>Step 2 Find user locked_by_id:<Item action="get"...
View ArticleAras ApplySQL
Open AML StudioConnect any Aras instanceSelect "ApplySQL"Use below sample query to run SQL statements<sql> update MANUFACTURER_PART with (rowlock) set MODIFIED_ON = '2009-03-27 11:05:00.000'...
View ArticleWeb API
http://www.c-sharpcorner.com/UploadFile/4d9083/how-to-create-web-api-in-Asp-Net-mvc/http://www.c-sharpcorner.com/UploadFile/2b481f/testing-of-Asp-Net-web-api-method/
View ArticleHTTP Overview
The Hypertext Transfer Protocol (HTTP) is an application-level protocol for distributed, collaborative, hypermedia information systems. This is the foundation for data communication for the World Wide...
View ArticleUsing HTTP Methods (GET, POST, PUT, etc.) in Web API
http://www.exceptionnotfound.net/using-http-methods-correctly-in-asp-net-web-api/
View ArticleI have 300K records in SQL, out of that 1k records are having wrong data in...
Try this...You may have better approach, but this is one approach.1.Get right data from Source System to flat file with primary key value and column value.EX: Employee Location is wrong, in this...
View ArticleC# .Net execute from command line
Open CMD.c:\users\test\Documents>Open Notepad. Ex:c:\users\test\Documents>notepad hello.csWrite sample code.Ex:using System;class Program{static void Main(){Console.WriteLine("Hello");}}Save...
View Articlec# nested dictionary foreach key value pair
Dictionary<string, Dictionary<string, string>> objData = new Dictionary<string, Dictionary<string, string>>();//Assign data to nested dictionary...
View Article