Once In A White Moon - by Gina Therese Hvidsten
© 2024
Once In A White Moon

Sitecore Marketing Automation Custom Predicate woes

TL;DR: If you are getting “No predicate descriptor was registered with Id ‘9f3a44f4-179a-4d19-8583-14a8874e5bba’” in your Automation Engine log, make sure your XML definition file is prefixed with “sc.”   I recently needed to create some custom predicates for Marketing Automation in Sitecore 9.0. Sitecore has made a decent attempt at documenting what you need to do, but it is quite lacking in one specific area. After you have created your new class and inherited from ICondition (don’t worry about IContactSearchQueryFactory. It is not specifically mentioned, but for Marketing Automation rules you only need ICondition) you need to copy the DLL file that contains your custom predicate to the Automation Engine in this location: XConnectFolder\App_data\jobs\continuous\AutomationEngine. You also need to create an XML file for Automation Engine […] Read more

WPF, EntityFrameworkCore and SQLite

After starting on a new programming project I needed some way to have the application persist data between sessions. I eventually found SQLite, and the enthusiasm grew as I found out that there is an EntityFramework provider for this. Microsoft has even went a step further and made an EntityFrameworkCore implementation, which even supports migrations (albeit limited). When I saw that EntityFrameworkCore was supported even in regular .NET applications I reached peak enthusiasm and decided that this was my path. I eagerly started reading Microsoft’s “Getting started” documents, and almost immediately ran into problems. The migrations described in the previous link all mention running “dotnet ef” commands. The problem is that the documentation doesn’t specify where to execute those commands. And when I finally found out that […] Read more

I managed to finish a new project!

As some of you know I’m very good at starting new projects… not so good at finishing them. This time, however, I’ve actually done it! I came up with a new project, started doing it, and have now actually finished it! At the office we have some hardware with a serial port and we needed to see what kind data was sent from the hardware. Initially I thought that that would be easy as there should be many simple tools for this on the internet. I was wrong. We downloaded a lot of different tools, but none worked. After a while we finally found one that worked, but that only had a trial version (which sufficed for our quick debugging). Seeing as this kind of software […] Read more

Windows 10 fully compatible with my techno karma

I have bad techno karma. When I’m trying out new hardware/software something always goes wrong. This time it is Windows 10. I installed Windows 10 just fine. After installing all the drivers I noticed I needed to update my BIOS, which I did. Everything continued to work just find and I installed some applications. After a while I noticed that I had one harddrive too much, so I figured the BIOS update had just disabled my RAID. “No biggie, I’ll just reboot, turn RAID back on and everything is hunky dory.” Cue techno karma. After turning on RAID Windows 10 now refused to start. I couldn’t even repair the installation, so I had to reinstall everything. Having not used RAID for an hour there was data […] Read more