Saturday, June 14, 2014 

Linq stack over flow explanation.

Beautiful explanation on stack overflow.

http://stackoverflow.com/questions/471502/what-is-linq-and-what-does-it-do/471592#471592

Linq stands for Language Integrated Query
Instead of writing YAQL (yet another query language), MS language developers provided a way to express queries directly in their languages (such as c# and vb). The techniques for forming these queries do not rely on the implementation details of the thing being queried, so that you can write valid queries against many targets (databases, in-memory objects, xml) with practically no consideration of the underlying way in which the query will be executed.
Let's start this exploration with the parts belonging to the .Net Framework (3.5).
  • Linq To Objects - examine System.Linq.Enumerable for query methods. These target IEnumerable, allowing any typed loopable collection to be queried in a type-safe manner. These queries rely on compiled .Net methods, not Expressions.
  • Linq To Anything - examine System.Linq.Queryable for some query methods. These target IQueryable, allowing the construction of Expression Trees that can be translated by the underlying implementation.
  • Expression Trees - examine System.Linq.Expressions namespace. This is code as data. In practice, you should be aware of this stuff, but don't really need to write code against these types. Language features (such as lambda expressions) can allow you to use various short-hands to avoid dealing with these types directly.
  • Linq To Sql - examine the System.Data.Linq namespace. Especially note the DataContext. This is a DataAccess technology built by the C# team. It just works.
  • Linq To Entities - examine the System.Data.Objects namespace. Especially note the ObjectContext. This is a DataAccess technology built by the ADO.Net team. It is complex, powerful, and harder to use than Linq To Sql.
  • Linq To Xml - examine the System.Xml.Linq namespace. Essentially, people weren't satisfied with the stuff in System.Xml . So MS re-wrote it and took advantage of the re-write to introduce some methods that make it easier to use LinqToObjects against Xml.
  • Some nice helper types, such as Func and Action. These types are delegates with Generic Support. Gone are the days of declaring your own custom (and un-interchangable) delegate types.
All of the above is part of the .Net Framework, and available from any .Net language (vb.net, c#, iron python, cobol.net ...).

Ok, on to language features. I'm going to stick to C#, since that's what I know best. Vb.Net also had several similar improvements (and a couple that C# didn't get - Xml literals). This is a short and incomplete list.
  • Extension Methods - this allows you to "add" a method to type. The method is really a static method that is passed an instance of the type, and is restricted to the public contract of the type... but it very useful for adding methods to types you don't control (string), or adding (fully implemented) helper methods to interfaces.
  • Query Comprehension Syntax - this allows you to write in a Sql Like structure. All of this stuff gets translated to the methods on System.Linq.Queryable or System.Linq.Enumerable (depending on the Type of myCustomers). It is completely optional and you can use Linq well without it. One advantage to this style of query declaration is that the range variables are scoped: they do not need to be redeclared for each clause.
IEnumerable result = from c in myCustomers where c.Name.StartsWith("B") select c.Name
  • Lambda Expressions - This is a shorthand for specifying a method. The C# compiler will translate each into either an anonymous method or a true System.Linq.Expressions.Expression. You really need to understand these to use Linq well. There are three parts: A parameter list, an arrow, and a method body.
IEnumerable result = myCustomers.Where( c => c.Name.StartsWith("B") ).Select(c => c.Name)
  • Anonymous Types - Sometimes the compiler has enough information to create a type for you. These types aren't truly anonymous... the compiler names them when it makes them. But those names are made at compile time, which is too late for a developer to use that name at design time.
myCustomers.Select(c => new { Name = c.Name; Age = c.Age; })
  • Implicit Types - Sometimes the compiler has enough information from an initialization that it can figure out the type for you. You can instruct the compiler to do so by using the var keyword. Implicit typing is required to declare variables for Anonymous Types, since Programmers may not use the name of an Anonymous type.
//The compiler will determine that names is an IEnumerable
var names = myCustomers.Select(c => c.Name);

Monday, June 09, 2014 

ECMA Script5

ECMA script5
-------------


Mainly defines few changes to the object / property code. which allows to make a object immutable.

- Now properties can be blocked from being extended using
  - preventExtensions
  - seal
  - freeze

Clearly explained here by John - http://ejohn.org/blog/ecmascript-5-objects-and-properties/

We now have native bind() method on functions which takes in a context and returns a function which binds the function on which it is called to the scope given to bind.

We also have map / reduce function in array class.

They also made undefined immutable.