Skip to content
This repository was archived by the owner on Aug 2, 2026. It is now read-only.

Commit d32927b

Browse files
authored
Update README with .NET 10 LINQ Contains fix
Fix formatting and clarify LINQ Contains issue with .NET 10.
1 parent d2db3d5 commit d32927b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ dotnet add package Core.Arango
88

99
# .NET driver for ArangoDB
1010
- .NET Standard 2.0, 2.1, .NET 8 and .NET 10 driver for ArangoDB 3.11+
11-
- .NET 10 / C#14 breaks Linq Contains due span usage: fix with cast ((IEnumerable<string>)list).Contains(x. ));
11+
- .NET 10 / C#14 breaks Linq Contains due span usage: fix with cast
12+
```((IEnumerable<string>)list).Contains(x. ));```
1213
- LINQ support (WIP)
1314
- Newtonsoft.Json and System.Text.Json serialization support with PascalCase and camelCase options
1415
- Updates from anonymous types supported as (Id, Key, Revision, From, To) properties are translated to (_id, _key, _rev, _from, _to)

0 commit comments

Comments
 (0)