LINQ
跳至導覽
跳至搜尋
LINQ(Language Integrated Query)參照:『維基百科~Language_Integrated_Query』
- LINQ常配合Entity Framework或Entity Framework Core使用,根據ConnectionString使用指定的資料庫種類。
技術文件
- C#
- 使用 C# 的 Language Integrated Query (LINQ) | Microsoft Docs
- Language-Integrated Query (LINQ) (C#) | Microsoft Docs
- VB.NET
- Language-Integrated Query (LINQ) - Visual Basic | Microsoft Docs
- LINQ - Visual Basic | Microsoft Docs
- 轉換
- work/data/adonet/sql/linq/ LINQ to SQL - ADO.NET | Microsoft Docs
- LINQ to DataSet - ADO.NET | Microsoft Docs
- LINQ to Entities - ADO.NET | Microsoft Docs
- 總覽-LINQ to XML | Microsoft Docs
- LINQ to Objects
- 相關簡介
- 學習 LINQ 技術的相關資源整理 | The Will Will Web
- LINQ 首部曲 : LINQ To Object Part 1_黄忠成-CSDN博客
- (原创)一步一步学Linq to sql系列文章 - lovecherry - 博客园
- 程式碼範例
相關軟體
- 工具
- 套件
- GitHub - scottksmith95/LINQKit: LINQKit is a free set of extensions for LINQ to SQL and Entity Framework power users.
- GitHub - dncuug/X.PagedList: Library for easily paging through any IEnumerable/IQueryable in ASP.NET(資料分頁用)
- GitHub - mrange/cpplinq: LINQ for C++ (cpplinq) is an extensible C++11 library of higher-order functions for range manipulation. cpplinq draws inspiration from LINQ for C#.
- LINQ for PHP comparison: YaLinqo, Ginq, Pinq - CodeProject
- py-linq · PyPI
FAQ
LINQ與交易(Transaction)
- KB-Transaction in Linq to SQL-黑暗執行緒
- 異動支援 - ADO.NET | Microsoft Docs
- .net - How to create a LINQ to SQL Transaction? - Stack Overflow
篩選條件的in怎麼用?
- Linq to SQL how to do “where [column] in (list of values)”
- .Where(m => 值域集合變數.Contains(m.欄位名稱))
篩選條件用字串比較
- 條件為 >= 、 <= 、 > 、 < 、 ==
- .Where(m => 欄位名稱.CompareTo(字串或字串變數) 條件 0)