Archive for October 2015
Microsoft Azure Part - 2 How Websites Works?

Web hosting plans:
One azure subscription can have one or more website plans.
One azure subscription can have one or more resource groups.
A resource group can have virtual machines, websites,...
Azure websites deployed into the same subscription,.
Microsoft Azure Part - 1 Website Creation and hosting/publishing using Visual Studio

You should have a Microsoft Azure account to work on Azure which is a Microsoft cloud platform. It helps you to host your applications, databases and lot more in cloud which can be managed easily using azure management portal.
Azure portal link
https://manage.windowsazure.com/
You.
LINQ TUTORIAL PART 5 - LINQ to ENTITIES

LINQ to Entities
Construct ObjectQuery instance out of ObjectContext.
Create a query in C#.NET
Conversion of Linq operators and expressions into command trees.
Executing query with exceptions
Returning all the results to client directly.
ObjectContext.
LINQ TUTORIAL PART 4 - LINQ to XML
LINQ to XML is used to query data from xml document using simple queries so that we can save data from xml in other formats.
Example program for LINQ to XML:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
namespace.
LINQ TUTORIAL PART 3 - LINQ to OBJECTS
LINQ to Objects queries will return data of IEnumerable type.
Example of LINQ to Object with array type:
using System;
using System.Linq;
namespace LINQApp
{
class Program
{
static void Main(string[].
LINQ TUTORIAL PART 2 - LINQ to SQL
LINQ to SQL is also known as DLINQ. It is used to query data in SQL server database by using LINQ expressions.
Example:
Right click on data connections in server explorer.
Add connection -> enter servername, authentication, database name.
Test.
LINQ TUTORIAL PART 1 - INTRODUCTION
LINQ stands for language integrated query.
It is a simple way to query SQL data, XML data or other C# objects.
It is written along with C# code hence it is known as language integrated query.
LINQ provides intellisense which helps in accurate and easy.