Skip to content

Commit

Permalink
Update protoFile and OfX README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
quyvu01 committed Dec 26, 2024
1 parent 169c412 commit 756a4d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Registers assemblies that contain the contracts (queries) used by OfX for data m

Contracts define the structure and logic for retrieving data.

Parameters:
Parameters:
`Assembly`: The assembly containing the contract definitions.

Example:
Expand Down Expand Up @@ -123,5 +123,6 @@ Enjoy your moment!

| Package Name | Description | .NET Version | Document |
|----------------------------------------------------------|-----------------------------------------------------------------------|--------------|------------------------------------------------------------------------------------------|
| [OfX](https://www.nuget.org/packages/OfX/) | OfX core | 8.0, 9.0 | [ReadMe](https://github.com/quyvu01/OfX/blob/main/README.md) |
| [OfX](https://www.nuget.org/packages/OfX/) | OfX core | 8.0, 9.0 | This Document |
| [OfX-EFCore](https://www.nuget.org/packages/OfX-EFCore/) | This is the OfX extension package using EntityFramework to fetch data | 8.0, 9.0 | [ReadMe](https://github.com/quyvu01/OfX/blob/main/src/OfX.EntityFrameworkCore/README.md) |
| [OfX-gRPC](https://www.nuget.org/packages/OfX-gRPC/) | OfX.gRPC is an extension package for OfX that leverages gRPC for efficient data transportation.| 8.0, 9.0 | [ReadMe](https://github.com/quyvu01/OfX/blob/main/src/OfX.Grpc/README.md) |
6 changes: 3 additions & 3 deletions src/OfX.Grpc/ofX.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ service OfXTransportService{

message GetOfXGrpcQuery{
repeated string selector_ids = 1;
string expression = 2;
string query_assembly_type = 3;
google.protobuf.StringValue expression = 2;
google.protobuf.StringValue query_assembly_type = 3;
}

message OfXItemsGrpcResponse{
Expand All @@ -22,5 +22,5 @@ message OfXItemsGrpcResponse{

message ItemGrpc{
string id = 1;
string value = 2;
google.protobuf.StringValue value = 2;
}

0 comments on commit 756a4d6

Please sign in to comment.