Skip to content

Commit

Permalink
feat: Additional overloads for normal usage of the service client. (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianhall authored Aug 4, 2024
1 parent 47d38e3 commit b6a2c3b
Show file tree
Hide file tree
Showing 8 changed files with 252 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using CommunityToolkit.Datasync.Client.Service;
using System.Linq.Expressions;

namespace CommunityToolkit.Datasync.Client.Query;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// See the LICENSE file in the project root for more information.

using CommunityToolkit.Datasync.Client.Query;
using CommunityToolkit.Datasync.Client.Service;

namespace CommunityToolkit.Datasync.Client;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using CommunityToolkit.Datasync.Client.Service;

namespace CommunityToolkit.Datasync.Client;

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@
using CommunityToolkit.Datasync.Client.Query.Linq;
using CommunityToolkit.Datasync.Client.Query.OData;
using CommunityToolkit.Datasync.Client.Serialization;
using Microsoft.Extensions.Options;
using CommunityToolkit.Datasync.Client.Service;
using System.Linq.Expressions;
using System.Net;
using System.Net.Http.Headers;
using System.Net.Http.Json;
using System.Text.Json;
using static Microsoft.EntityFrameworkCore.DbLoggerCategory;

namespace CommunityToolkit.Datasync.Client.Service;
namespace CommunityToolkit.Datasync.Client;

/// <summary>
/// The concrete implementation of the <see cref="IDatasyncServiceClient{TEntity}"/> interface.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace CommunityToolkit.Datasync.Client.Service;
namespace CommunityToolkit.Datasync.Client;

/// <summary>
/// The options that can be used to modify the request for the service.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

using CommunityToolkit.Datasync.Client.Query;

namespace CommunityToolkit.Datasync.Client.Service;
namespace CommunityToolkit.Datasync.Client;

/// <summary>
/// A read-only version of the service client that talks to a datasync service.
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using CommunityToolkit.Datasync.Client.Service;
using System.Diagnostics.CodeAnalysis;
using System.Net.Http.Headers;
using System.Text.Json;

namespace CommunityToolkit.Datasync.Client.Service;
namespace CommunityToolkit.Datasync.Client;

/// <summary>
/// A response from a remote datasync service.
Expand Down

0 comments on commit b6a2c3b

Please sign in to comment.