我的 CodeFluent 模型中的所有关键属性都是 ulong 类型,并且必须由数据库自动递增,例如:
<cf:property name="Id" typeName="ulong" key="true" persistenceIdentity="true" cfps:hint="CLUSTERED" />
一个特定的键属性必须以值 10 而不是 1 开头。
我该如何指定?
另一个问题:你有关于 cfps 命名空间的文档吗?
最佳答案
使用最新版本的 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"/>
关于codefluent - 如何在 CodeFluent 模型中为属性指定身份种子?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34116902/