cocowalla
cocowalla
I'm also really interested in this. Consider a multi-tenant system, where each tenant has it's own retention policy (between 3 months and 10 years) - being able to _instantly_ drop...
I switched to the described solution after receiving the same via Slack (for the multi-tenant problem I described earlier in this thread). This wouldn't feel strange for non-multi-tenant scenarios, but...
You haven't stated how you plan to self-host (i.e. HTTP.sys or Kestrel), but in either case, nancy is really not the relevant factor here - it's the _HTTP server_. [HTTP.sys](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/?view=aspnetcore-2.2&tabs=windows#httpsys)...
It really depends what precisely you are doing, and what framework you are targeting.
@Tommixoft Http.sys and the whole system of URL reservations is very fickle IME. Might I suggest the following: `string url = $"http://127.0.0.1:{Session.Config.BindToPort}";` I seem to recall that worked for me...
Not sure about Mono, but I've had Nancy working fine using .NET Core - is that an option for you? Regarding the `global.json` error, it's saying that Nancy is pinned...
I've never actually built Nancy from sources; I just used the NuGet packages :smile: Regarding the entrypoint, you are still going to need a Program.cs with a Main method, which...
I've been building web apps with Nancy for years, and I'm genuinely sad to see this after it kept me on the super duper happy path for so long. In...
Yes, it would have to be done by the driver. In MongoDB a type discriminator field is added, which contains the name of the class being stored. The JSON serializer...
> A DB should not know anything about polymorphism For a relational database, perhaps not. But perhaps so for a graph database such as ArangoDB. But in anycase, when I...