We have a scenario in which, if an entity exists between the source and the target, we must combine the data into the target, that is, copy the values ββfrom the columns of the fund, where the target column is empty.
We use WCF service calls, and we have entity objects.
If I have an entity, say Staff , the staff encodes the basic properties for the name, etc., and we have a list for StaffAddress , StaffEmail and StaffPhone .
So, I just wanted to find out if there is a way to use LINQ or some other mechanism - can I find out a list of the properties of the Staff object that are empty or empty?
One rudimentary way is, of course, manually checking one property for an empty one?
source share