I have a Master/Detail screen in LightSwitch. I allow user to delete details' items. However, the user is allowed to delete all except one. In other words,only one detail item needs to be present.
Is this doable in lightswitch?
Regards
|
I have a Master/Detail screen in LightSwitch. I allow user to delete details' items. However, the user is allowed to delete all except one. In other words,only one detail item needs to be present. Is this doable in lightswitch? Regards
| |||
|
feedback
|
|
Here's how to do this:
Here's how to code this. In this example, the master entity is AdAgreement, and the detail entity is Issues:
Unfortunately you can't perform this check in the Entity_CanDelete event, which would give you a better user experience, in my opinion. The problem is that CanDelete operates at the entity set level, and there is no access to the individual entity that would be deleted. | |||
|
feedback
|