Closed SinDotBe closed 4 years ago
In EFCore.Cassandra.Samples, This query int k = 10; var d = dbContext.Applicants.Where(d => d.Decimal == k); encounters such an error: line 3:19 no viable alternative at character '_' thanks!
int k = 10; var d = dbContext.Applicants.Where(d => d.Decimal == k);
line 3:19 no viable alternative at character '_'
The problem is fixed in the branch "release/2.0.0". We are doing some investigation to understand why it's not possible to filter on GUID.
The issue is fixed in the release 2.0.0.
thanks a lot
In EFCore.Cassandra.Samples, This query
int k = 10; var d = dbContext.Applicants.Where(d => d.Decimal == k);
encounters such an error:line 3:19 no viable alternative at character '_'
thanks!