Using NDbUnit with tables that have a table schema
- by KevinT
I am having issues using NDbUnit with tables that have their own schema - ie:
CREATE TABLE MYSCHEMA.MyTable01
(
Id int NOT NULL,
Description varchar(50) NOT NULL
)
Is this a supported scenario? What do I need to do to get this to work?
(working fine when the table is dbo.MyTable01)