Gives the best resolution that the database can use for storing date/time values, in ticks.

Namespace: NHibernate.Dialect
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public virtual long TimestampResolutionInTicks { get; }
Visual Basic
Public Overridable ReadOnly Property TimestampResolutionInTicks As Long
	Get
Visual C++
public:
virtual property long long TimestampResolutionInTicks {
	long long get ();
}

Remarks

For example, if the database can store values with 100-nanosecond precision, this property is equal to 1L. If the database can only store values with 1-millisecond precision, this property is equal to 10000L (number of ticks in a millisecond).

Used in TimestampType.

See Also