https://github.com/dimesoftware/linq
💪 Supercharged extensions for LINQ
https://github.com/dimesoftware/linq
csharp dotnet dotnetstandard linq utiity
Last synced: 28 days ago
JSON representation
💪 Supercharged extensions for LINQ
- Host: GitHub
- URL: https://github.com/dimesoftware/linq
- Owner: dimesoftware
- License: mit
- Created: 2020-04-28T07:08:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-11-13T08:19:11.000Z (7 months ago)
- Last Synced: 2026-05-01T10:06:10.728Z (about 1 month ago)
- Topics: csharp, dotnet, dotnetstandard, linq, utiity
- Language: C#
- Homepage: https://dimesoftware.github.io/linq/
- Size: 107 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README

Linq
## About this project
Dime.Linq is a utility library which contains a set of extensions for the System.Linq namespace. Check out the wiki for an overview of the extension methods.
## Getting Started
- You must have Visual Studio 2019 Community or higher.
- The dotnet cli is also highly recommend
## Build and Test
- Run dotnet restore
- Run dotnet build
- Run dotnet test
## Installation
Use the package manager NuGet to install Dime.Linq:
`dotnet add package Dime.Linq`
## Usage
``` csharp
using System.Linq;
public void MyMethod(IEnumerable customerList)
{
(IEnumerable success, IEnumerable failed)
= customerList.Fork(x => x.Address == "New York");
}
```
## Contributing
Pull requests are welcome. Please check out the contribution and code of conduct guidelines.