bbakermmc
bbakermmc
Ideally I would pass over something like "IgnoredFields" : ["Field1", "Field2"]
Yes, I know how to set the code via C#. Ideally I want a rest endpoint where other people call in to and they can pass in a valid ChoCSVRecordConfiguration,...
EX: ```c# var csvRecordConfiguration = new ChoCSVRecordConfiguration { Delimiter = "|", AutoDiscoverColumns = true, AutoDiscoverFieldTypes = true, ThrowAndStopOnMissingField = false, IgnoredFields = { "@odata.etag," }, //This doesnt appear in the...
It also doesnt have a setter so I cant just do ```c# csvRecordConfiguration.IgnoredFields = inputData.IgnoredFields.ToHashSet(); ``` Any easy fixes to allow the config to be "saveable" and loaded from a...
I don’t think the container is closing. Just Firefox has exited. Sent from my iPhone On Feb 25, 2019, at 8:50 PM, Jocelyn Le Sage wrote: If you don't want...
@jlesage Is there a way to set the UI to just be 100% of remote? Currently you need to set a resolution like 10x7, but it doesnt "grow", so do...
@jlesage right, but if I have a 4k monitor, and the docker is set to 10x7, the scale does nothing, I would need to set the resolution to 4k? then...
@HTI-DaraiusKeeka Since there was no response looks like I ended up using a diff framework: https://github.com/Cinchoo/ChoETL REF: ```c# private static void ChoEtlDelimitedMethod(CloudBlockBlob blobFile, int fileLogId, IEnumerable fileDefinitionFields, SqlBulkCopy bulkCopy) {...
@ridercz Is wildcard support added? The read-me says no, but it looks like in Nov you added it...
StaticRoles GrantedPermissions also has no setter, so trying to pass it a list of string created elsewhere and to use in multiple roles doesnt work.