Tuesday, 31 January 2017

Get the class properties in the list

In this article you will learn, how you can access your class properties value in a list and perform whatever operation you want with the properties value. below is my Class named Employee. this class contains four properties.     public class Employee     {         public string FirstName { get; set; }         public string LastName { get; set; }  ...
Continue Reading →

Saturday, 21 January 2017

STUFF() - SQL Server

Description: STUFF function is used to append number of characters from one string and replace them with another string. So, you can say this function insert string into another string, it removes all the specified length of string and insert other string value on that place. Syntax STUFF(string, start, length, add_string)  Example: 1- SELECT STUFF('dotnetguru.in',12,2, 'com') as [stuff...
Continue Reading →

Thursday, 19 January 2017

Basics of SQL Commands

SQL commands are a set of instructions that are used to interact with the database like Sql Server, MySql, Oracle etc. SQL commands are responsible to create and to do all the manipulation on the database. These are also responsible to give/take out access rights on a particular database Sql Commands Category We have different sql commands for different-different purpose. We can grouped Sql...
Continue Reading →

Monday, 16 January 2017

Comma separated value parameter in SQL IN clauses

How to use comma separated values parameter in SQL IN Clause in SQL Queries- The SQL IN clause is very useful, since it allows you to specify exactly which values you want to return. For this tip,  let's assume we have a database with this table: CREATE TABLE [dbo].[Employee]( [ID] [int] NOT NULL, [Name] [varchar](50) NULL, CONSTRAINT [PK_Employee] PRIMARY KEY And the Data is: ID...
Continue Reading →

Topics

ADFS (1) ADO .Net (1) Ajax (1) Angular (47) Angular Js (15) ASP .Net (14) Authentication (4) Azure (3) Breeze.js (1) C# (55) CD (1) CI (2) CloudComputing (2) Coding (10) CQRS (1) CSS (2) Design_Pattern (7) DevOps (4) DI (3) Dotnet (10) DotnetCore (20) Entity Framework (5) ExpressJS (4) Html (4) IIS (1) Javascript (17) Jquery (8) jwtToken (4) Lamda (3) Linq (10) microservice (4) Mongodb (1) MVC (46) NodeJS (8) React (10) SDLC (1) Sql Server (32) SSIS (3) SSO (1) TypeScript (3) UI (1) UnitTest (2) WCF (14) Web Api (16) Web Service (1) XMl (1)

Dotnet Guru Archives