-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change bolt client to use async endpoints of driver * accidental change * restructure solution for dotnet standard only * remove all sync endpoints, move everything to async (except transactions), and delete gremlin * add transactions * transactions tests * cleanup a couple of things * Multi-targeting 4.5.2, 4.6 as well as netstandard 2.0 now Added build constants for net45, and added the VB tests back in Adding Version into the csproj for CI * Updating the Readme * It will build - but not tested. DO NOT USE. * Preventing NCrunch solution files being committed * Parameters all use $ syntax now * Fixing some tests - more to go - mocking issues atm * Removed a lot of REST/Gremlin code from the GraphClient * `GraphClient` and `BoltGraphClient` currently connect against `4.0` Need to test GC with 3.5 - as no longer using `cypher` endpoint for anything, only tx * Majority of tests fixed, 3 to go * Tests fixed * update neo4j driver and add support for new signed and self-signed sc… (#356) * update neo4j driver and add support for new signed and self-signed schemes * update readme * Moved cursor.ToListAsync inside transaction, as required for Neo4J 4.x. Also sorted out some nulls in bookmarks. (#362) * Updating so the `Http` and `Bolt` versions work (#363) * Transactions and WithDatabase (#367) * Handling Encryption * Transactional 'WithDatabase' * Fix #386 on 4.x (#372) * Adding `USE` to the CypherFluentQuery * 40 development (#374) * Tests for Transactions Throws exceptions when cypher gives back errors This is now for the 'ExecuteCypherNoResults' side of things QueryStats for GraphClient - ExecuteNoResults 3.5 / 4.x * WithQueryStats for GraphClient * WithQueryStats for BoltGraphClient * Manual implementation of 'Neo4jIgnoreAttribute' To take into account changes since the PR was originally written by https://github.com/Clooney24 * 40 development (#375) * Remove `Start` * Create(string, params object[]) * Return<T>(string, CypherResultMode) * StartBit (various) * Mapper * Hiding unused member * Database Administration Commands * Set capabilities properly * Updating Readme Co-authored-by: Toby Miller <[email protected]>
- Loading branch information
1 parent
11dfa0e
commit 4ebac9e
Showing
484 changed files
with
10,407 additions
and
21,226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,30 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="CypherFluentQueryTests.fs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="FluentAssertions" Version="5.2.0" /> | ||
<PackageReference Include="Moq" Version="4.8.2" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="FluentAssertions" Version="5.10.3" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" /> | ||
<PackageReference Include="Moq" Version="4.14.5" /> | ||
<PackageReference Include="xunit" Version="2.4.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Neo4jClient\Neo4jClient.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Update="FSharp.Core" Version="4.3.4" /> | ||
<PackageReference Update="FSharp.Core" Version="4.7.2" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.