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

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

Syntax

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

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