Darrell

Results 117 issues of Darrell

I noted that workflow.core supports error handling: https://workflow-core.readthedocs.io/en/latest/error-handling/ However from conductor docs under Error Handling it says "TODO": https://conductor-core.readthedocs.io/en/latest/primitives/ Would you be able to clarify whether conductor is capable of...

I am curious whether this project was inspired by https://github.com/Netflix/conductor ? If not, you might want to visit that project as it shares a few things in common but seems...

`SqlCmd` allows you to pass variable values that can be used in scripts: ``` & sqlcmd -i CreateDb.sql -v dbName="foo" ``` `CreateDb.sql`: ``` CREATE DATABASE $(dbName) ON ( NAME =...

Hi, this looks fantastic. Please consider publishing warp as: - chocolatey package - npm package - dotnet cli global tool That way, it will be easier for some folks to...

enhancement

The latest beta's of `Lucene.Net` target `netstandard`. If we could upgrade this `Lucene.Net.Linq` and `Nuget.Lucene` to target that then you could run lightening fast nuget feed on multiple platforms including...

I have started to add some images to my post, but I notice that they aren't resized to fit the page.. i.e they look like this: ![image](https://cloud.githubusercontent.com/assets/3176632/21753603/6f1e5be8-d5e8-11e6-8fee-0be98731af26.png) Can this be...

I am using team city version: TeamCity 8.1.5 (build 30240), I downloaded the release zip file and put it in the plugins directory and restarted team city. When I "Test...

Suppose your POCO object has a string property, but the value returned by the stored procedure is a different type, like `int`. At the moment this throws an exception saying...

`MapToList` fails when coming accross enum properties. Could handle them something like: ``` csharp var val = dr.GetValue(colMapping[prop.Name.ToLower()].ColumnOrdinal.Value); if(prop.PropertyType.IsEnum) { prop.SetValue(obj, val == DBNull.Value ? null : Enum.ToObject(prop.PropertyType, (int)val)); }...

When unit testing, multiple tests can run in parallel. One test might be configuring a DbContext and another might be using a different instance of the same DbContext type to...

bug