Jørn Wildt
Jørn Wildt
That didn't take too long :-) See https://github.com/Bogevang-spejderhytte/website/tree/main/Bogevang.Booking.Domain/Documents. Thanks for providing all the necessary infrastructure such as sending mails, permission checking, dependency injection with associated startup scanning and auto update...
Performance may not be fantastic for large data sets, but it seems like a better solution than to read everything into memory and then sort it.
My use case is a booking system for a lodge. When someone submits a booking request, the system replies with a receipt e-mail. When the administrator confirms the booking, the...
The templating system turned out to be surprisingly simple to implement using the building blocks from Cofoundry. You can see it here https://github.com/Bogevang-spejderhytte/website/tree/main/Bogevang.Templates.Domain Kudos for a very well designed and...
> Ok great, so it sounds like the idea of having content-managed email templates, where the template is defined in code but certain elements can be content managed Yes. For...
Thinking of it - it seems as if it is a variation of "singular admin entities" as discussed in https://github.com/cofoundry-cms/cofoundry/issues/243. Defining a singleton custom entity "Confirmation e-mail" with an HTML...
It would be nice to see some work on this :-) I'm implementing a booking system with a "request booking" form which is much like a contact form - just...
Your comment about AJAX/API got me looking into Vue.js (I'm still a bit old school and like server side coding) - and I think you are spot on. View Components...
Here is one suggestion for implementing a fairly straight forward full text indexing feature in Cofoundry: 1) Mark up every searchable field in the data model using a special attribute...
But be very aware of SQL server's "stop words" which is very language dependent. The best example I know of is the word "and" which is not indexed in English...