File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -205,19 +205,19 @@ public static string Version
205
205
206
206
/// <summary>
207
207
/// Set the default length used in casting when the target type is length bound and
208
- /// does not specify it. <c>4000</c> by default, automatically trim down according to dialect type registration.
208
+ /// does not specify it. <c>4000</c> by default, automatically trimmed down according to dialect type registration.
209
209
/// </summary>
210
210
public const string QueryDefaultCastLength = "query.default_cast_length" ;
211
211
212
212
/// <summary>
213
213
/// Set the default precision used in casting when the target type is decimal and
214
- /// does not specify it. <c>28</c> by default, automatically trim down according to dialect type registration.
214
+ /// does not specify it. <c>28</c> by default, automatically trimmed down according to dialect type registration.
215
215
/// </summary>
216
216
public const string QueryDefaultCastPrecision = "query.default_cast_precision" ;
217
217
218
218
/// <summary>
219
219
/// Set the default scale used in casting when the target type is decimal and
220
- /// does not specify it. <c>10</c> by default, automatically trim down according to dialect type registration.
220
+ /// does not specify it. <c>10</c> by default, automatically trimmed down according to dialect type registration.
221
221
/// </summary>
222
222
public const string QueryDefaultCastScale = "query.default_cast_scale" ;
223
223
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ public interface IDetachedQuery
213
213
/// </summary>
214
214
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
215
215
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
216
- /// <remarks>Since v5.0, does no more cut milliseconds . Use <see cref="SetDateTimeNoMs(int, DateTime)" />
216
+ /// <remarks>Since v5.0, does no more cut fractional seconds . Use <see cref="SetDateTimeNoMs(int, DateTime)" />
217
217
/// for this</remarks>
218
218
IDetachedQuery SetDateTime ( int position , DateTime val ) ;
219
219
@@ -223,7 +223,7 @@ public interface IDetachedQuery
223
223
/// </summary>
224
224
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
225
225
/// <param name="name">The name of the parameter</param>
226
- /// <remarks>Since v5.0, does no more cut milliseconds . Use <see cref="SetDateTimeNoMs(string, DateTime)" />
226
+ /// <remarks>Since v5.0, does no more cut fractional seconds . Use <see cref="SetDateTimeNoMs(string, DateTime)" />
227
227
/// for this</remarks>
228
228
IDetachedQuery SetDateTime ( string name , DateTime val ) ;
229
229
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ public partial interface IMultiQuery
241
241
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
242
242
/// <param name="name">The name of the parameter</param>
243
243
/// <returns>The instance for method chain.</returns>
244
- /// <remarks>Since v5.0, does no more cut milliseconds . Use <see cref="SetDateTimeNoMs" />
244
+ /// <remarks>Since v5.0, does no more cut fractional seconds . Use <see cref="SetDateTimeNoMs" />
245
245
/// for this</remarks>
246
246
IMultiQuery SetDateTime ( string name , DateTime val ) ;
247
247
Original file line number Diff line number Diff line change @@ -402,7 +402,7 @@ public partial interface IQuery
402
402
/// </summary>
403
403
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
404
404
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
405
- /// <remarks>Since v5.0, does no more cut milliseconds . Use <see cref="SetDateTimeNoMs(int, DateTime)" />
405
+ /// <remarks>Since v5.0, does no more cut fractional seconds . Use <see cref="SetDateTimeNoMs(int, DateTime)" />
406
406
/// for this</remarks>
407
407
IQuery SetDateTime ( int position , DateTime val ) ;
408
408
@@ -412,7 +412,7 @@ public partial interface IQuery
412
412
/// </summary>
413
413
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
414
414
/// <param name="name">The name of the parameter</param>
415
- /// <remarks>Since v5.0, does no more cut milliseconds . Use <see cref="SetDateTimeNoMs(string, DateTime)" />
415
+ /// <remarks>Since v5.0, does no more cut fractional seconds . Use <see cref="SetDateTimeNoMs(string, DateTime)" />
416
416
/// for this</remarks>
417
417
IQuery SetDateTime ( string name , DateTime val ) ;
418
418
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ public static IType GuessType(System.Type type)
113
113
public static readonly CultureInfoType CultureInfo = new CultureInfoType ( ) ;
114
114
115
115
/// <summary>
116
- /// NHibernate date time type. Since v5.0, does no more cut milliseconds .
116
+ /// NHibernate date time type. Since v5.0, does no more cut fractional seconds .
117
117
/// </summary>
118
118
/// <remarks>Use <see cref="DateTimeNoMs" /> if needing cutting milliseconds.</remarks>
119
119
public static readonly DateTimeType DateTime = new DateTimeType ( ) ;
Original file line number Diff line number Diff line change 173
173
<xs : annotation >
174
174
<xs : documentation >
175
175
Set the default length used in casting when the target type is length bound and
176
- does not specify it. 4000 by default, automatically trim down according to dialect type registration.
176
+ does not specify it. 4000 by default, automatically trimmed down according to dialect type registration.
177
177
</xs : documentation >
178
178
</xs : annotation >
179
179
</xs : enumeration >
180
180
<xs : enumeration value =" query.default_cast_precision" >
181
181
<xs : annotation >
182
182
<xs : documentation >
183
183
Set the default precision used in casting when the target type is decimal and
184
- does not specify it. 28 by default, automatically trim down according to dialect type registration.
184
+ does not specify it. 28 by default, automatically trimmed down according to dialect type registration.
185
185
</xs : documentation >
186
186
</xs : annotation >
187
187
</xs : enumeration >
188
188
<xs : enumeration value =" query.default_cast_scale" >
189
189
<xs : annotation >
190
190
<xs : documentation >
191
191
Set the default scale used in casting when the target type is decimal and
192
- does not specify it. 10 by default, automatically trim down according to dialect type registration.
192
+ does not specify it. 10 by default, automatically trimmed down according to dialect type registration.
193
193
</xs : documentation >
194
194
</xs : annotation >
195
195
</xs : enumeration >
You can’t perform that action at this time.
0 commit comments