Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ a recommendation on how to partition and store similar information.
| File/folder | Description |
|-------------------|--------------------------------------------|
| `src` | Sample source code. |
| `src/Shared` | Contains the definition for the BookEntity and sample data loading. The connection string for the Table Storage service is retrieved from an environment variable. |
| `src/Common` | Contains the definition for the BookEntity and sample data loading. The connection string for the Table Storage service is retrieved from an environment variable. |
| `src/QueryData` | Demonstrates how to query data in a table using filters, ordering, and top N items. |
| `.gitignore` | Define what to ignore at commit time. |
| `CHANGELOG.md` | List of changes to the sample. |
Expand Down
2 changes: 1 addition & 1 deletion src/Shared/BookEntity.cs → src/Common/BookEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System;
using System.Globalization;

namespace Shared
namespace Common
{
public class BookEntity : TableEntity
{
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Shared/TableService.cs → src/Common/TableService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.Azure.Cosmos.Table;
using System;

namespace Shared
namespace Common
{
public static class TableService
{
Expand Down
2 changes: 1 addition & 1 deletion src/QueryData/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Microsoft.Azure.Cosmos.Table;
using Shared;
using Common;
using System;

namespace QueryData
Expand Down
2 changes: 1 addition & 1 deletion src/QueryData/QueryData.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Shared\Shared.csproj" />
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Samples.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 16.0.29806.167
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QueryData", "QueryData\QueryData.csproj", "{2BD90DC8-4D29-4D44-97AD-90D428014603}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "Shared\Shared.csproj", "{3620913C-DC01-4A12-B2CC-6DC7F2A76890}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "Common\Common.csproj", "{3620913C-DC01-4A12-B2CC-6DC7F2A76890}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down