adl/ADL.NET/Trans/types.xml
af 9b6fd82110 Refinements of the ADL transforms to have them better work with more than just the
SRU codebase.

Note that synthetic primary key is now assumed to be 'Id'.... though actually most
 of the references to an entity's primary key should be looking it up rather than
 assuming its name.
2008-01-14 16:53:31 +00:00

10 lines
579 B
XML
Executable file

<types>
<type name="integer" dotnet="Int32" sql="INTEGER" dotnet-kind="value" default="0" />
<type name="real" dotnet="Double" sql="REAL" dotnet-kind="value" default="0.0"/>
<type name="boolean" dotnet="Boolean" sql="BIT" dotnet-kind="value" default="false"/>
<type name="date" dotnet="DateTime" sql="DATETIME" dotnet-kind="value" />
<type name="time" dotnet="TimeSpan" sql="DECIMAL" dotnet-kind="value" />
<type name="money" dotnet="Decimal" sql="MONEY" dotnet-kind="value" />
<type name="string" dotnet="String" sql="NVARCHAR" dotnet-kind="reference" />
</types>