Hello Experts,
Is it possible to get an entity from a typed list or a typed view?
Ex:
Generated TypedList: OrderTypedList
and from there I want to get an OrderEntity from OrderTypedList somewhat like:
OrderEntity order = new OrderEntity();
OrderTypedList orderList = FindAllOrderTypedList(); -> method that will return a fetched list from database
now,
order = orderList[0] as OrderEntity;
How possible it is to get an OrderEntity from a list?Or is there a method that will convert a typed list row into a specific entity?
Thanks,