I’m trying to create a local database for a Windows Phone application. I can create the database quite happily but it looks like the tables in the database are not being created or are being created with names I’m not expecting.
Is there any way to see what tables exist in the db or is there something extra I need to do to have the tables created? Has anyone else had this problem (and how did you solve it)?
Fixed it. Problem turned out to be the “Name” attributes were causing problems. Even though the name for each column was the same as the property the attribute was covering the SQL CE db didn’t like it. I removed the attribute and the problem went away.