How to have a where clause on an insert or an update in Linq to Sql?
- by Kelsey
I am trying to convert the following stored proc to a LinqToSql call (this is a simplied version of the SQL):
INSERT INTO [MyTable]
([Name], [Value])
SELECT
@name, @value
WHERE
NOT EXISTS(SELECT [Value] FROM [MyTable] WHERE [Value] = @value)
The DB does not have a constraint on the field that is getting checked for so in this specific…