November Happy Hour will be moved to Thursday December 5th.
Hi
CMS Version - 10.10.3Commerce 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); EntityObject[] sortedListCustomer = BusinessManager.List(CustomerContact.ClassName, null, null); List objCustomerContact = new List(); if (sortedListCustomer.ToList() != null) { objCustomerContact = sortedListCustomer.ToList().OfType().Where(x => x.Created > dt).ToList(); }
But we are not getting any column value which is added in Contact by us using "Business Foundation".
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".