cofoundry
cofoundry copied to clipboard
Cofoundry is an extensible and flexible .NET Core CMS & application framework focusing on code first development
Although it is possible to build your own search index using the messaging framework, it would be a big improvement to be able to query custom entities via different partitions....
Assume a custom entity booking like this: ``` public class BookingDataModel : ICustomEntityDataModel { public DateTime ArrivalDate { get; set; } } ``` The above serialized data can be ordered...
It would be nice to see the custom entity description in the admin header (as a sub-title) - not just as a mouse over text in the admin menu. To...
Sorry, but I'm lost in the documentation. I can find examples of defining custom entities and querying custom entities and it works for me - I can create bookings in...
If I show a list of entity view models and use the standard query mechanism, then it will throw PermissionValidationFailedException if the end user does not have access to the...
Hello, Is there a way to customize Site settings ? Currently there are "Application name" and "Allow automatic updates", but I would like to add my own settings via the...
As far as I know EntityFrameworkCore & EF in general supports other databases, is there a case I can use different, and how, I noticed there's only ConnectionString that is...
For some elements, you/we could implement Tag Helpers which ease the template designers. So regions for instance could be used as: ``` ... ``` Since I am not familiar of...
It would be useful to have a single [NestedDataModel] attribute that would allow you to add a property with a single nested data model. I can't think of that many...
Currently the only way to customize the admin menu is to use [roles and permissions](https://github.com/cofoundry-cms/cofoundry/wiki/Roles-&-Permissions) to restrict access to the features you want to hide. You are not able to...