Carlin Scott

Results 97 comments of Carlin Scott

While I have not been able to create an optimized layer, I believe the [ReadyToRun compilation directive introduced in dotnet 3.1](https://docs.microsoft.com/en-us/dotnet/core/deploying/ready-to-run) makes optimized layers less important. I can add the...

Please re-open. The issue has not been fixed to my knowledge.

I ended up instantiating my own instance of the Json.NET JsonSerializer using the IContentfulClient.SerializerSettings: ```c# _contentfulSerializer = JsonSerializer.Create(contentful.SerializerSettings); var bodyReader = new StreamReader(Request.Body); var json = await bodyReader.ReadToEndAsync(); var stringReader...

It would be nice if you exposed the serializer used by the client publicly, through the interface, so that I could use it in my webhooks.

Entity Framework and most of the other ORMs I've used in .NET have great support for selecting one or several fields. The general term for it is a "projection query"....

Entity framework converts that projection into a SQL SELECT statement. It’s the same situation. I don’t know how they do it, but they do. - Carlin > On Mar 27,...

The build went green before I got your reply so I have little to work from. I do have the build log and there's too much jumping out at me...

https://gist.github.com/carlin-q-scott/718361d78955f980205b

I'm not using gulp so I suspect that doesn't solve my problem. Meanwhile I figured out how to get MSBuild to recognize changes for npm.

Thank you for the quick response @marcinguy. I was hoping to be able to run the cli with my CI environment without having to commit the sqlite db file to...