Anders Wåglund

Results 14 comments of Anders Wåglund

Have you considered https://github.com/belav/csharpier (like prettier but for C#)?

> ... that format of ETag is invalid. ETag can take [two kinds](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag): > > > > - W/"ETag value" > > - "ETag value" > > > > The...

Would a "magic" workaround like only using linebreaks if there is a single class/interface in the entire file work? Class1.cs ```cs public class Class1 { } ``` Classes.cs ```cs class...

> This feature would be a game changer for our team. no we are forced to use JB CLI tool and its proprietary rules https://github.com/belav/csharpier is the game changer you...

@stinos & @Meligy > Unfortunately doesn't work 100% (as in: repeatedly applying still changes some whitespace) though it's close. > csharpier has some edge cases (it failed on what seemed...

I also noticed that the enums are not unique even after reduce. *Edit:* Since it affects all enums (not only dictaionry keys) I started a discussion about it #18439 ------...

I just noticed that the value of `SaveEnumsAsIntegers` does not matter at all. Dictionary enum keys are always **stored** as strings and **patched** as integers. ![image](https://github.com/ravendb/ravendb/assets/76928/a7c6a58e-703c-4944-a37c-21d3dc140537) ```cs public class DictionaryEnumKeysTests...

I think the confusing part is that it's possible to query for nested properties on documents but not on projections from indexes. ```cs var docByName = session .Query() .Where(p =>...

@arekpalinski I can see that tests are failing but I cannot see the reason. Can I assist in resolving the failures?

@efratshenhar I just wanted to let you know that there was a typo in the failing test which made it fail for the wrong reason. I have edited the test...