I do not know the available utilities that do this, and it's a little important to do for the SO answer.
, , . DBML XML; Linq-to-xml. SQL xml script. script. ( XSLT)
<Table Name="dbo.Person" Member="Persons">
CREATE TABLE Persons (
<Column Name="PersonID" Type="System.Int32" DbType="Int NOT NULL IDENTITY"
IsPrimaryKey="true" IsDbGenerated="true" CanBeNull="false">
</Column>
<Column Name="AddressID" Type="System.Int32" DbType="Int NOT NULL"
CanBeNull="false"></Column>
:
PersonID Int NOT NULL,
AddressID int NOT NULL,
..