Doron Grinzaig

Results 12 issues of Doron Grinzaig

Hi, For `new Hebcal.HDate(19, 7, 5780).getSedra()` I'm getting `[ 'End-of-Year: Simchat-Torah, Sukkot' ]` which is a thing I've never heard of. I've asked around, no one knows why this is...

We have very big UTs and integration tests projects that spin a postgres server with docker before they begin and shut it down afterward. Since it's only for tests and...

Hi, Are there any planes on supporting ASP.NET Core in this library? It's specially important since SignalR was pushed off V1.0. I just fiddled yesterday for couple of hours with...

Currently (AFAIK) it's only possible to either have SingleQuery or SplitQuery defined globally for all queries, or per-query. Would have been really helpful being able to set the default split...

type-enhancement
customer-reported
area-query

Hi All, Everyone today's under the impression we are done with deadlocks because of SynchronizationContexts since they were removed in ASP.NET Core. Problem is, the same code that works perfectly...

Hi, I'm wondering if someone has a list of rules for keywords that won't work in Google Trends. For example: 1. A keyword cannot end with a dash(-) or else...

I could not find a built-in way with json.NET to not merge dictionaries when using `JObject.Merge` similar to `MergeArrayHandling.Replace `, it would always merge the keys. ```csharp jobject.Merge(newJobject, new JsonMergeSettings...

We have many projects with EF migrations and no one is using the `Down` Method to revert a migration, so we don't care of covering it with UTs. Ideally it...

question
stale

Often times developers use: `Snapshot.Match(dto);` which is nice, but when a new property is added to the dto, previous UTs, that weren't really affected by the change fail, because `newPropery:...