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.
10 lines
579 B
XML
Executable file
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> |