var fDesc=new Array(); fDesc[0] = "ActiveWriter is basically a tool to model entities and relations between them. It consists of a modeller and a code generator. Entities are generated as C# or VB classes.

As ActiveWriter itself, the documentation on this site is a preview and will be improved.

There are many tools to generate classes from diagrams, and ActiveWriter is not the best of them if it's only the class generation. What makes it useful is that, you can instruct it to decorate generated code with necessary ActiveRecord attributes. This way, you can instantly persist your entities to a database, retrieve them and walk through them using entity relations.

Main features:

-Design surface

This is where you model entities and relations. The page background represents the model and has some properties too, as seen in the properties window above.

-Model Explorer

This is a tool window to quickly find a model element in your domain. Selecting an item in this window is the same as selecting an item from the design surface.

-ActiveWriter files

A model is basically consists of two files: an .actiw file which holds all your model, and a .diagram file holding design surface properties, like the X/Y placement of an entity on the surface. Generated code is also kept together with these two files. Right now, ActiveRecord generates one file for each model, regardless of the number of entities in the model.

-Properties window

Shows the properties applied to the selected item.
ActiveWriter toolbox items

You may drag and drop items from toolbox to design surface to create your model. Relations are created by selecting the relation from the toolbox, then selecting two classes in the design surface.

-Server Explorer integration

You may drag tables from Server Explorer on to the design surface. One entity per table (except many-to-many tables) will be created and relations, to some extend, will be generated between entities based on the foreign key relations in the database. Currently, SQL Server is the only supported database for Server Explorer integration."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }