Filter out records in data entity impoirt

I have a requirement to modify the employee V2 data entity so that certain records can be skipped on import. For example, if I get a list of records of employees for import, and some have been terminated already, I want to be able to not process those records and avoid the exception error that is generated. I can use the PostLoad method to test whether the record is for a terminated employee, but how do I skip the processing or that record?

Shawn

I think you should change the database operation to None (in mapEntityToDataSource(), for instance).

Thank you Martin. That’s what I needed.