Grisha Kotler
Grisha Kotler
Did you set the `SaveEnumsAsIntegers` to `true` in the `Conventions`?
This works and stores strings ``` private class EnumAsInteger { public string Id { get; set; } public List MyEnum { get; set; } public enum Enum { Idle, Running...
We are going to implement `AsyncBlittableJsonTextWriterForDebug`.
> @grisha-kotler please check failing tests I thought that https://github.com/ravendb/ravendb/pull/18417 will be merged first. Anyway, I pushed the fix.
This will require a separate PR for v6.0.
@arekpalinski the original issue was because of an import in 5.4.
We'll need a dedicated PR for 6.0
@georgiosd Can you share the database and the query?
@georgiosd the issue is fixed [here](https://github.com/ravendb/ravendb/pull/17779)
Hi, Using your current index, you can change it: Index(x => x.OwningContact, FieldIndexing.Search); And query it like this: from index 'OrganizationDtoIndex' where OwningContact = '00000000-0000-0000-0000-000000000002' Note that this query is...