I replicated your problem along with a solution...
here I find the name of your table's primary
select CONSTRAINT_NAME
from INFORMATION_SCHEMA.TABLE_CONSTRAINTS
where TABLE_NAME = 'Product' and CONSTRAINT_TYPE = 'PRIMARY KEY'
take the return from the above query and replace (PK_ Product_ 3214EC07822AF903) in the query below
alter table Product drop constraint PK__Product__3214EC07822AF903
primary key cannot be null
alter table Product alter column [Name] varchar (250) NOT NULL
finally, setting the new primary key
alter table Product add constraint PK_Product primary key ([Name])