我的CodeFluent模型中的所有关键属性都是ulong类型,必须由数据库自动递增,例如:
<cf:property name="Id" typeName="ulong" key="true" persistenceIdentity="true" cfps:hint="CLUSTERED" />
一个特定的键属性必须以值10而不是1开头。 我该如何指定?
另一个问题:您是否有关于cfps命名空间的文档?
答案 0 :(得分:1)
使用最新版本的CodeFluent实体(&gt; = 836),您可以在属性级别设置标识种子和增量:
<cf:property name="Id" typeName="int"
cfps:identitySeed="10"
cfps:identityIncrement="2"
xmlns:cfps="http://www.softfluent.com/codefluent/producers.sqlserver/2005/1"/>