Amichai Mantinband

Results 11 issues of Amichai Mantinband

The following will throw an exception: ```csharp public record User(string Name); ``` ```csharp public record UserDto(string Name); ``` ```csharp TypeAdapterConfig.NewConfig() .Ignore(dest => dest.Name); var user = new User("Amichai"); var userDto...

Add the following extensions methods for dictionaries: ```csharp var dictionary = new Dictionary { ["key1"] = "value1", ["key2"] = "value2", }; dictionary.Throw().IfContainsKey("key1"); dictionary.Throw().IfNotContainsKey("key3"); ``` And the corresponding dictionary properties extension...

enhancement
good first issue

Add the following collection validations: ```csharp var collection = new[] { 1, 2, 3, 3 }; collection.Throw().IfAny(item => item == 3); collection.Throw().IfSingle(item => item == 2); collection.Throw().IfNotSingle(item => item ==...

enhancement

This won't be merged.. It's just for fun

This won't be merged.. It's just for fun

Hey! First of all, awesome project. I've been tinkering around with it in the past few days and it's been a blast. I have the following configuration to both switch...

**Problem description:** Not sure if this is a bug or by design, but I would think the files starting with the substring would be on top: ![image](https://github.com/scambier/obsidian-omnisearch/assets/39407673/2f77fba5-f22b-4629-b6a5-d1fa5e564800) I tried playing...

enhancement
high value