views:

158

answers:

2

Hi All

I Want Print DataBase Schema in "Microsoft Sql Server Compact Edition". Maybe Exist Some Tools For it.

How Can I do it?

+1  A: 

Use SQLMetal to create a dbml file with your SQL Server CE objects and print that.

Keep in mind that you cannot just drag the tables over to the designer like with LINQ to SQL, you have to use SQLMetal instead.

There is a good article on this subject over at code project...

kzen