-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handyman.Azure.Cosmos.Table v3 preview 1
- Loading branch information
1 parent
b7e9c43
commit b07f062
Showing
31 changed files
with
328 additions
and
518 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Handyman.Azure.Cosmos.Table | ||
|
||
on: | ||
push: | ||
paths: | ||
- src/Handyman.Azure.Cosmos.Table/src/** | ||
- src/Handyman.Azure.Cosmos.Table/tests/** | ||
pull_request: | ||
paths: | ||
- src/Handyman.Azure.Cosmos.Table/src/** | ||
- src/Handyman.Azure.Cosmos.Table/tests/** | ||
workflow_dispatch: | ||
inputs: | ||
publish: | ||
description: Publish to nuget | ||
required: false | ||
type: boolean | ||
default: false | ||
|
||
jobs: | ||
build-test-publish: | ||
uses: JonasSamuelsson/Handyman/.github/workflows/build-test-publish-v1.yml@master | ||
with: | ||
mainProjectPath: src/Handyman.Azure.Cosmos.Table/src/Handyman.Azure.Cosmos.Table.csproj | ||
testProjectPath: src/Handyman.Azure.Cosmos.Table/tests/Handyman.Azure.Cosmos.Table.Tests.csproj | ||
publish: ${{ github.event.inputs.publish }} | ||
secrets: | ||
nuget: ${{ secrets.NUGET }} |
13 changes: 0 additions & 13 deletions
13
src/Handyman.Azure.Cosmos.Table/src/CloudTableClientExtensions.cs
This file was deleted.
Oops, something went wrong.
138 changes: 0 additions & 138 deletions
138
src/Handyman.Azure.Cosmos.Table/src/CloudTableExtensions.cs
This file was deleted.
Oops, something went wrong.
118 changes: 0 additions & 118 deletions
118
src/Handyman.Azure.Cosmos.Table/src/CloudTableFactory.cs
This file was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
using Microsoft.Azure.Cosmos.Table; | ||
using Azure.Data.Tables; | ||
using System; | ||
using System.Linq.Expressions; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/Handyman.Azure.Cosmos.Table/src/ITableQueryFilterBuilder.cs
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,4 +1,4 @@ | ||
using Microsoft.Azure.Cosmos.Table; | ||
using Azure.Data.Tables; | ||
using System; | ||
using System.Linq.Expressions; | ||
|
||
|
8 changes: 8 additions & 0 deletions
8
src/Handyman.Azure.Cosmos.Table/src/Internals/AndTableQueryFilterNode.cs
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace Handyman.Azure.Cosmos.Table.Internals; | ||
|
||
internal class AndTableQueryFilterNode : CompositionTableQueryFilterNode | ||
{ | ||
public AndTableQueryFilterNode() : base(TableOperators.And) | ||
{ | ||
} | ||
} |
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
Oops, something went wrong.