4

我的 CodeFluent 模型中的所有关键属性都是 ulong 类型,并且必须由数据库自动递增,例如:

<cf:property name="Id" typeName="ulong" key="true" persistenceIdentity="true" cfps:hint="CLUSTERED" />

一个特定的键属性必须以值 10 而不是 1 开头。我该如何指定呢?

另一个问题:你有关于 cfps 命名空间的文档吗?

4

1 回答 1

1

使用最新版本的 CodeFluent Entities (>=836),您可以在属性级别设置身份种子和增量:

<cf:property name="Id" typeName="int"
             cfps:identitySeed="10" 
             cfps:identityIncrement="2" 
             xmlns:cfps="http://www.softfluent.com/codefluent/producers.sqlserver/2005/1"/>
于 2015-12-28T08:43:29.280 回答