This add-in lets you easily create classes for your SQL Server database tables, directly into your code. In SSMS, select your table, right click on the table, and select Create To and select Clipboard. This will copy all the statements needed to create your table. In your C# code, position the cursor where you want the class inserting, and click on Edit>Paste Special>Paste SQL As Classes The clipboard will be scanned, and the class for your table pasted into your source code. Nullable fields will be taken into account. If you choose Paste SQL As Binding classes, the code generated will implement INotifyPropertyChanged on the class And generate code for each field, plus the INotifyPropertyChanged code |