What is Partial Assembly References

We can dynamically reference an assembly by providing only partial information, such as specifying only the assembly name. When you specify a partial assembly r..

What do you mean by NUnit

Its a unit-testing framework for all the .Net language and its ported from JUnit its version 2.2 it is xUnit based unit testing tool for Microsoft .NET. It is w..

What do you mean by XAML

Extensible Application Markup Language is a XML based Language for creating a rich graphical user interface XAML was first introduced in 2003 as the language be..

Different ways of moving data from databases

There are different methods of moving data

(1)BACKUP and RESTORE


(2)detaching

(3)Attaching databases


(4)Replication

(5) DTS


(6)BCP
..

What is LOCK escalation

It is the process of converting Low Level Locks to higer Level Locks.Example of LLL(Low Level locks) is row locks and HLL(Higher Level Locks) is table lock.Ever..

How and when to use LIKE statement

The LIKE condition allows us to use wildcards in the where clause of an SQL query.

(1)% allows you to match any string of any length (including zero length..