I have a scenario. I want my inmemory table column to accept multiple NULL values but when entered something besides NULL, It should be unique. This i kept doing in Disk tables using CREATE UNIQUE NONCLUSTERED INDEX
.
ex:
CREATE UNIQUE NONCLUSTERED INDEX [IX_customer_PRN]
ON [dbo].[customer](PRN)
WHERE PRN IS NOT NULL
GO
Need suitable alternative in IN MEMORY
tables.