We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d0fe41 commit 1a9e06dCopy full SHA for 1a9e06d
src/NHibernate/Dialect/FirebirdDialect.cs
@@ -209,9 +209,8 @@ public override SqlString AddIdentifierOutParameterToInsert(SqlString insertStri
209
210
public override long TimestampResolutionInTicks
211
{
212
- // Lousy documentation. Various mailing lists and articles seem to
213
- // indicate resolution of 0.1 ms, i.e. 1000 ticks.
214
- get { return 1000L; }
+ // Resolution of 1 ms, i.e. 10000 ticks.
+ get { return 10000L; }
215
}
216
217
public override bool SupportsCurrentTimestampSelection
0 commit comments