tokyo0709
tokyo0709
Found my way here from this as well: https://stackoverflow.com/questions/46857930/azure-function-http-trigger-validating-body-data
Gotcha. If the calling application was an Azure function would this cause a problem? I can't seem to get that call to work when I throw it in the beginning...
Yeah. The call throws an error saying that there is no parameterless constructor for it if I remember right. I'll have to get more details when I look at it...
Ah ok yes this could be part of the problem. The class I was mapping implemented IHaveCustomMappings and properties that had getters only and only one parameterized constructor. For this...
I just tested this and it worked perfectly. Thank you for the help! I love this library and am stoked to get it working with Azure functions as well.
Ok so I just ran into another problem where I have multiple Azure functions but I don't know which one is going to get hit first. In the constructor of...
Scratch that I figured out a workaround by building a static initializer. (Sorry to drag this out) ```csharp public static class AutomapperInitializer { private static bool _initialized = false; public...