LINQ to anything

Source: Internet
Author: User

As a breakthrough innovation in. NET Framework 3.5, LINQ builds a bridge between the object field and the data field, allowing you to conveniently operate data using lambda expressions .. Net Framework 3.5 has integrated the following functions, this allows you to implement your own LINQ solution for different data sources. Therefore, "LINQ to anything" is also possible.

This article is used to sort out the content of LINQ to anything and will be updated continuously. Please note your comments.

  • Linqtooracle

From codeplex's open-source project, for the Oracle database's LINQ solution, PV reached 360, it can be said that there is still a certain degree of attention.

  • Dblinq2007

Many databases are supported by this LINQ extension, including Oracle, PostgreSQL, MySQL, and SQLite. I have never used it to judge the specific effect, if any of you have used it, tell us your experience.

  • LINQ to CSV

A class library that uses LINQ to operate CSV files, from codeproject.

  • LINQ to excel

The Code Section makes everyone's thinking active:

  using(XlsWorkbook book = new XlsWorkbook("TestData\\100.xls")) {     var sheets = from s in book.Worksheets                 where s.Name == "100"                 select s;     foreach(var sheet in sheets) Console.WriteLine(sheet.Name);}
  • LINQ to Google image and Google groups

Use lambda expressions to query Google photos and groups, also from codeproject.

  • LINQ to Google
  • LINQ to Amazon
  • LINQ to Flickr

You can use tags, upload time, user ID, and title to search for images on Flickr.

  • LINQ to Twitter

Micro Blog Twitter development API

  • LINQ to SharePoint

You can use LINQ to query the Sharepoint list. This open-source project has a PV of 1200 on codeplex!

  • LINQ to Active Directory

Reference the system. directoryservices namespace to operate the Windows Active Directory.

  • LINQ to Lucene

You can use lambda expressions to compile your search engine! It's LINQ to Lucene. net.

  • LINQ to simpledb

Amazon simpledb is a Web service that queries structured data in real time. Now, LINQ is really pervasive!

  • LINQ to Javascript
  • LINQ to CRM
  • LINQ to PhP
  • LINQ to WMI
  • LINQ to STDF (the latter are all from codeplex, And the PV volume is relatively small)

 

Technorati labels: LINQ,. Net 3.5

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.