Posted one month ago
Here, we will take at look at essential elements of Scrum Agile Development Method. This could be used as Scrum Cheat Sheet.
What is Scrum?
Scrum is an iterative and incremental agile software development framework for managing software projects and product or application development. Its focus is on a flexible product development strategy where a development team works as a unit to reach a common goal.
Essential Elements of Scrum (Cheat Sheet)
...
Read Full Article »
:: Invite To Join Group ::
Posted 3 months ago
Lets see how to Quickly Create a Copy of a Table using Transact-SQL
The easiest way to create a copy of a table is to use a Transact-SQL command. Use SELECT INTO to extract all the rows from an existing table into the new table. The new table must not exist already. The following example will copy the Employees table under the Company schema to a new table called Employees under the Department schema...
Read Full Article »
:: Invite To Join Group ::
Posted 7 months ago
This article will demonstrate how create REST service with JSON and SOAP API all in one WCF service in ASP.NET 4.0
Introduction
The WCF REST Programming Model provides the required elements to build REST services with WCF. REST services are designed to be accessed by the widest range of possible clients, including Web browsers, using XML/JSON responses.
...
Read Full Article »
:: Invite To Join Group ::
Posted one year ago
This is a brief article showing what are the essentials of synchronization in thread.
Thread Synchronization Essentials
The following tables summarize the .NET tools available for coordinating or synchronizing the actions of threads:
...
Read Full Article »
:: Invite To Join Group ::
Posted one year ago
This article will demonstrate you how to host service endpoints with WSHttpBinding and NetTcpBinding in a single WCF Service.
Introduction
Let's jump to implementation.
Implementation
1. Open a new ConsoleApplication in VS .Net IDE. Rename it to "SelfHostWCF".
2. Add a reference to System.ServiceModel dll in the project.
3. Create a ServiceContract Interface and implement the Service class with OperactionContract.
...
Read Full Article »
:: Invite To Join Group ::