I\'m trying to check if table exists, but not working correctly.
For some reason, count always returns -1. I already have a table in the database. It should return
ExecuteStoreQuery Directly Execute Commands Against the Data Source.
int result = entity.ExecuteStoreQuery(@" IF EXISTS (SELECT * FROM sys.tables WHERE name = 'TableName') SELECT 1 ELSE SELECT 0 ").SingleOrDefault();
See answer here.