Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Blogging Blogs  >  Programming blogging Blog  > 

Programming Blog


code-sample.com
C#, ASP.Net MVC, Dotnet Core , Dotnet 8, Rest API, Angular, IONIC, ReactJs, AngularJs, KnockoutJs, JavaScript, jQuery, KendoUI, Ajax, WCF, WPF, LINQ with Entity Framework and SQL Server.
2016-12-16 12:53
Code-Sample is an idea that providing the “Multiple Technology Resources” to helps for the Readers (Developers, Students and Learners) around the World!!The Journey started with… Read More
2016-12-09 11:56
Main categories of SQL Server Data Types,1.      Numeric a.      Exact Numeric b.      Approximate Numeri… Read More
2016-12-09 10:03
The DATEDIFF function is use to get the differences in days, hours, minutes, seconds etc. and It is returns the time between two dates.The DATEDIFF function can be used from above versi… Read More
What Is Inner Join In SQL? Why You Use?
2016-12-07 09:11
What is inner join in SQL? Why you use?Inner Join returns the matched rows from both the tables. If both the keys are matched then return rows otherwise not!I hope you are enjoying with this… Read More
2016-12-04 07:12
What is a function in SQL Server?A SQL function is a set of statements that you can pass input values, perform an action and return the result and the result can be single value or a table v… Read More
2016-12-04 05:50
--==================================--CREATE FUNCTION WITHOUT PARAMETER.--==================================CREATE FUNCTION AddFun()RETURNS INTAS BEGINDECLARE @Result AS INTSET @Result=2+3RE… Read More
2016-12-04 05:49
--================================--CREATE FUNCTION WITH PARAMETERS.--================================CREATE FUNCTION AddFun1(@NumIst INT,@NumpIInd INT)RETURNS INTAS BEGINDECLARE @Result AS… Read More
2016-11-24 07:01
JQuery Mobile is a touch-optimized web framework for creating mobile web apps and it is working on all popular smart-phones and tablets.Before you start learn jQuery mobile you should know f… Read More
2016-11-11 05:50
The .click() events are only attach to fully loaded elements and can't use for dynamic added elements and utilize more memory and create event handler for each child. The .click() requires t… Read More
Document Ready Vs. Window Load
2016-11-11 05:20
What is main difference between the $(document).ready () and window.onload()?The main differences are the $(document).ready()event called when your HTML document is loaded and DOM is ready a… Read More
2016-11-10 08:52
What are Multicast delegate, type and use?The multicast delegate is hold the references of more than one methods within the delegate object using the (+=) operator.1.   … Read More
2016-11-10 08:35
The basic examples of Delegates using in C# .Net as given below,using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace delegateExample{public delegate in… Read More
2016-11-09 11:22
The whereclause is a filtering operator and used to filter a collections based on the some specific criteria and after that returns the values from collection based on your given criteria (r… Read More
Var Vs. IEnumerable In LINQ
2016-11-08 10:57
The “var” is a keyword that implicitly types a variable and it is strongly typed also.The “var” keyword derives type from the right hand side and its scope is in the… Read More
IEnumerable Vs. IList
2016-11-08 07:32
When you should use IEnumerable and when IList?You should use IList when you need access by index to your collections and also when you need add, delete, modify, ordering and / or positionin… Read More
IEnumerable Vs. IQueryable
2016-11-08 06:27
Both the IEnumerable and IQueryable interfaces are for .NET collections, so if you are new please see this article and the IQueryable interface inherits from IEnumerable interface, so w… Read More
What Is LINQ API?
2016-11-04 09:56
In the LINQ, the collections of the extension methods for the classes that implements IQueryable and IEnumerable interface.The Enumerableclass includes extension methods for the class that i… Read More
LINQ Advantages And Disadvantages In .Net
2016-11-04 05:25
The LINQ is stands for Language Integrated Query and it is a Microsoft .NET Framework component and use for data querying and it was released in .NET Framework 3.5 on November 19, 2007.The a… Read More
LINQ Architecture In ASP .Net C#
2016-11-03 12:41
The LINQ has a 3 layered Architecture. In the upper layer consists of the language extensions and the bottom layer consists of data sources that are typically objects implementing IEnumerabl… Read More
What Is LINQ? Why LINQ?
2016-11-03 12:15
LINQ is stands for Language Integrated Query.LINQ is a Microsoft .NET Framework component and use for data querying.LINQ was released in Microsoft .NET Framework 3.5 on November 19, 2007.LIN… Read More
LINQ Lambda Expression Query With Examples
2016-11-03 06:04
A Lambda expression is an anonymous function that we can use to create expression tree types, delegates etc.A lambda expression is an expression on the right side of the => operator is ca… Read More
What Is Module In Node.js?
2016-10-17 11:25
A module is a just reference to the current module.A module encapsulates related code into a single unit of code. When creating a module, this can be interpreted as moving all related functi… Read More
2016-10-13 12:22
Hello Guys, I am going to share the global error handling in the jQuery Ajax and trying to cover all the errors displays. The detail you can see in the example, //jQuery global error ha… Read More
2016-10-10 09:07
In SQL, we can alias columns, views and tables. A table alias is also called a co-relation name.It is a temporarily names of columns or tables.The Alias temporarily assigns another name to a… Read More
2016-10-10 08:41
The CASE expressions compare an expression to a set of simple expressions to determine the result and CASE can be used in any statement that allows a valid expression.It is IF-THEN-ELSEstate… Read More
2016-10-10 08:06
The BETWEEN operator is used to select the values within a range.Syntax:-- Used of BETWEEN SELECT col1, col1FROM Table_nameWHERE col1 BETWEEN val1 AND val2;-- CREATE TABLECREATE TABLE [dbo]… Read More
2016-10-10 05:48
ANY keyword is used with a WHERE or HAVING clause.ANY keyword operates on sub-queries that return multiple values.ANY keyword returns true if any sub-query values matched the condition.Synta… Read More
2016-10-10 05:36
The AS keyword is used to assign an alias name of a column or a tableSyntax:SELECT COL1, COL1 FROM Table_Name AS DEMO-- CREATE TABLECREATE TABLE [dbo].[Tbl_Demo]( [ID] [int] IDENTITY(1,1)… Read More
2016-10-10 05:27
The ALL keyword is used to select all fields from a table using the asterisk "*" in a SQL SELECT statement.Syntax:SELECT ALL* FROM Table_name-- CREATE TABLE AND INSERT ROWSCREATE TABLE [dbo]… Read More
2016-10-10 05:23
The AND keyword is logical operator. It is used to filter table records with AND conditions.Syntax: SELECT col1, col2 FROM table_name WHERE Condition_1 AND Condition_2-- CREATE TABLE AN… Read More
2016-10-08 04:21
The Asynchronous Request non-blocking the client DOM/browser until your operations is completed and only initiates the operations. It is a backgrounds process.  It i… Read More
2016-10-07 05:41
The Hello world example as below,!DOCTYPE html>html>head>meta charset="utf-8">title>dojo toolkit hello world example/title>script src="//ajax.googleapis.com/ajax/libs/dojo/… Read More
2016-10-07 05:15
DOJO is a rapid development toolkit for web oriented software on desktop and mobile and internet applications without using the browser’s inbuilt graphics technology.There are basic to… Read More
2016-10-07 04:59
The DOJO components look like,1.      DOJO Grid2.      DOJO Tree3.      DOJO Filtering4.    &nb&hell…Read More
2016-10-06 06:14
DOJO is a rapid development toolkit for web oriented software on desktop and mobile and internet applications without using the browser’s inbuilt graphics technology cre… Read More
2016-10-06 06:02
What is DOJO Toolkit?Why use DOJO?Is jQuery better than DOJO?Where from Downloading DOJO?What is Folders Structure?What are DOJO component?Useful Resources and Examples? Read More
2016-10-06 04:56
It helps us in DOM scripting and an event management and also it provides us an abstraction over the complex JavaScript functions.DOJO has great support for integrating with back end data st… Read More
2016-10-06 04:47
DOJO is a rapid development toolkit for web oriented software on desktop and mobile and internet applications without using the browser’s inbuilt graphics technology. DOJO is bein… Read More
2016-10-05 04:44
The ISNULL() function is used to replace NULL with the specified replacement value. This function contains only two arguments.The ISNULL() can only have one input. So, ISNULL() is faster tha… Read More
2016-10-05 04:02
Using Reflection to create a DataTable from a Class?//How to create a DataTable from a Class?public static DataTable CreateDataTableT>(IEnumerableT> list){ Type type = typeof(T);… Read More
SQL Server INLINE IF ELSE
2016-10-04 10:37
--SQL SERVER INLINE IF ELSE.--OLD DATABASE QUERY.SELECT (CASE Flag WHEN 1 THEN 'Yes' ELSE 'No' END) AS if_else_Result--NEW DATABASE QUERY.SELECT IIF(1 = 1, 'Yes', 'No') AS if_else_Result;SEL… Read More
2016-10-04 09:18
The Synchronous Request blocks the client DOM/ browser until your operations is completed.It is basically hold and wait process. The second process will execute after first one is compl… Read More
2016-10-04 06:25
The XMLHttpRequest object is an API that is used to transferring data between a web browser and a web server using HTTP protocol and also provides the connection between a client and server… Read More
2016-09-30 09:33
What is callback?What is error first callback?In Node.js, EventEmitter is use to “emit” an errors and also when your object emits lots of types of events.There are multiple objec… Read More
2016-09-30 02:38
General Math1.      Number Notation2.      Addition Table3.      Multiplication Table4.   … Read More
2016-09-27 06:31
How to convert varbinary to string c#?//convert varbinary to string c#public byte[] binaryData { get; set; }//FOR ASCII Encodingstring ascii = System.Text.Encoding.ASCII.GetString(binaryData… Read More
2016-09-25 06:55
The Test examples,//Test NodeJs examplevar http = require('http');http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello NodeJs, I a… Read More
2016-09-25 06:42
It is very simple to update Node.js and NPM same as like your other software.Update to Node.js, simply go to Node.js official site and download Windows, Mac and Linux installer, and then exe… Read More
2016-09-25 06:24
You can uninstall Node.js and NPM same as like your other software. The following steps as below, 1.      Open your windows control panel.2.   &n&hell…Read More
Node.js Tutorial And Useful Resources
2016-09-24 11:31
Node.js Interview Questions and Answers TABLE OF CONTENTS1. Introductionsa) What is the Node.js?b) Where to use Node.js?c) Where not to use Node.js?d) Who uses it?e) Features of Node.js… Read More
2016-09-24 04:57
The NPM stand for “Node Package Manager” and it is an online repository for publishing to node.js projects.It is a command line utility that is use for,    &n&hell…Read More

Share the post

Programming

×

Subscribe to Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×