simpleidserver / EFCore.Cassandra

Entity Framework Core provider for Cassandra
Apache License 2.0
35 stars 16 forks source link

Query with specified condition. #3

Closed SinDotBe closed 4 years ago

SinDotBe commented 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!

simpleidserver commented 4 years ago

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.

simpleidserver commented 4 years ago

The issue is fixed in the release 2.0.0.

SinDotBe commented 4 years ago

thanks a lot