Hi, When I add Exclusion constraint on diagram I expect that NORMA generate some code behind, for example:
alter table Employee add constraint Employee _excl check
( (ParkingSpaceID is null) or
(ExpenseID is null) )
go
alter table Employee add constraint Employee_MR check
( (ParkingSpaceID is not null) or
(ExpenseID is not ...