You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EventStore.Client.Grpc.Streams cause issue with LINQ queries e.g Where, FirstOrDefault
We have made a seperate class Library project (net standard 2.1) and install
EventStore.Client - 20.10.0
EventStore.Client.Grpc.Streams - 20.10.0
Then we add reference of that class library project into our netCore3.1webApi. After adding reference we start receiving this error
To Reproduce
Steps to reproduce the behavior:
Make a seperate class library project targeting netStandard2.1.
Install
i. EventStore.Client - 20.10.0
ii. EventStore.Client.Grpc.Streams - 20.10.0 in class library project
Then make a netCore3.1webApi project in the same solution and make it a simple C.R.U.D type project.
When you add refernce of class Library project in netCore3.1webApi, you will start receiving errors as screenshot attached above
Expected behavior
EventStore.Client.Grpc.Streams have System.Linq.Async.dll. Either this should be removed or make its namespace seperate as it is conflicting with LINQ methods which causes error
Actual behavior
System.Linq.Async.dll conflicts with basic Linq Queries which makes compiler difficult to decide which method we are refering
Config/Logs/Screenshots _context.TableName.Where(x=>x.Name="test"); With this line the error comes:
EventStore details
EventStore server version: 20.10.0
Operating system: Windows 10
EventStore client version (if applicable):
EventStore.Client - 20.10.0
EventStore.Client.Grpc.Streams - 20.10.0
The text was updated successfully, but these errors were encountered:
EventStore.Client.Grpc.Streams cause issue with LINQ queries e.g
Where, FirstOrDefault
We have made a seperate class Library project (net standard 2.1) and install
EventStore.Client - 20.10.0
EventStore.Client.Grpc.Streams - 20.10.0
Then we add reference of that class library project into our
netCore3.1webApi
. After adding reference we start receiving this errorTo Reproduce
Steps to reproduce the behavior:
i.
EventStore.Client - 20.10.0
ii.
EventStore.Client.Grpc.Streams - 20.10.0
in class library projectnetCore3.1webApi
project in the same solution and make it a simple C.R.U.D type project.Expected behavior
EventStore.Client.Grpc.Streams have System.Linq.Async.dll. Either this should be removed or make its namespace seperate as it is conflicting with LINQ methods which causes error
Actual behavior
System.Linq.Async.dll conflicts with basic Linq Queries which makes compiler difficult to decide which method we are refering
Config/Logs/Screenshots
_context.TableName.Where(x=>x.Name="test");
With this line the error comes:EventStore details
EventStore server version: 20.10.0
Operating system: Windows 10
EventStore client version (if applicable):
EventStore.Client - 20.10.0
EventStore.Client.Grpc.Streams - 20.10.0
The text was updated successfully, but these errors were encountered: