Showing related tags and posts accross the entire site.
-
I have a table "Country" with this schema: CREATE TABLE [dbo].[Country]( [Country] nchar(2) NOT NULL, [Name] nvarchar(50) NOT NULL, CONSTRAINT [PK_Country] PRIMARY KEY CLUSTERED ( [Country] ASC )) ON [PRIMARY] When the Step 4 (update) unit test is generated for this table, it tries to put a...
-
Hi Peter, Thanks for your helpful comment. Probably I had been loading the dll from a folder where the config file was not availlable. I tried again with config file and now most of the tests work. Tanno