Using Lucee 4.5 and FW/1 when I try to go to my main.cfm page I get the Missing id property for entity cardholderrequest. If I turn ORM off it loads the page fine. I am sort of new to Lucee and FW/1. What does this mean? How do I fix it? I am using SQL server for my DBMS.
component accessors="true" persistent="true" table="cardholderrequests" {
property name="id" column="id" fieldtype="id" generator="native";
property name="activeIdentificationId" column="activeidentificationid" type="integer";
property name="cardholderRequestStatusId" column="cardholderRequestStatusId" type="integer";
property name="startDate" column="startDate" type="date";
property name="endDate" column="endDate" type="date";
property name="userId" column="user_id" type="integer" notnull="true";
property name="updatedId" column="updated_id" type="integer";
property name="createdAt" column="created_at" type="date" notnull="true";
property name="updatedAt" column="updated_at" type="date" notnull="true";
}