Other News

Community

XML-XPath,XQuery

(BI_Buff) One of the common ways the data is exchanged between applications is XML. XML is a data format , which follows the construct below, a XML document typically has Elements,attributes and a root element , all of which defines the structure of the data.

Community

LINQ Outer Joins

One commonly used feature of Language-Integrated Query (LINQ) is the facility to combine two sequences of related data using joins. The standard join operation provides an inner join but with a minor modification can be changed to give a left outer join.

Community

Sequences in FSharp

(Alok Pandey) A sequence represents an ordered series of elements of the same type. Sequences are important when we work with large amounts of data. It is also known as a sequence expression. It is very similar to Lists – except only one element of sequence can be exist in memory at a time. Sequence