A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
Hi
CMS Version - 10.10.3
Commerce Version - 11.2.4
We are fetching all Episerver customers data which is created after a particular date using the following code:
DateTime dt = DateTime.Now.Date.AddDays(-1.0); objCustomerContact = new List();().Where(x => x.Created > dt).ToList();
EntityObject[] sortedListCustomer = BusinessManager.List(CustomerContact.ClassName, null, null);
List
if (sortedListCustomer.ToList() != null)
{
objCustomerContact = sortedListCustomer.ToList().OfType
}
But we are not getting any column value which is added in Contact by us using "Business Foundation".