Skip to content

Commit 3f66942

Browse files
committed
Summaries' improvements
1 parent 81a152a commit 3f66942

11 files changed

Lines changed: 104 additions & 91 deletions

Orm/Xtensive.Orm/Orm/Configuration/DatabaseConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public string RealName
5252
/// <summary>
5353
/// Gets or sets type ID minimal value
5454
/// for types mapped to this database.
55-
/// Default value is 100.
55+
/// Default value is <see cref="TypeInfo.MinTypeId"/>.
5656
/// </summary>
5757
public int MinTypeId
5858
{

Orm/Xtensive.Orm/Orm/Configuration/DomainConfiguration.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class DomainConfiguration : ConfigurationBase
6868

6969
/// <summary>
7070
/// Default <see cref="ShareStorageSchemaOverNodes"/> value:
71-
/// <see langword="false"/>
71+
/// <see langword="false"/>.
7272
/// </summary>
7373
public const bool DefaultShareStorageSchemaOverNodes = false;
7474

@@ -354,6 +354,7 @@ public ForeignKeyMode ForeignKeyMode
354354
/// <summary>
355355
/// Gets or sets a value indicating change tracking mode of full-text indexes.
356356
/// The property may have no effect for certain storages where there is no support for such option.
357+
/// Default value is <see cref="DomainConfiguration.DefaultFullTextChangeTrackingMode"/>.
357358
/// </summary>
358359
public FullTextChangeTrackingMode FullTextChangeTrackingMode
359360
{
@@ -590,7 +591,7 @@ public bool ShareStorageSchemaOverNodes
590591
}
591592

592593
/// <summary>
593-
/// Gets or sets versioning convention.
594+
/// Gets or sets rules of entity versioning.
594595
/// </summary>
595596
public VersioningConvention VersioningConvention
596597
{
@@ -603,6 +604,13 @@ public VersioningConvention VersioningConvention
603604

604605
/// <summary>
605606
/// Enables extra check if connection is not broken on its opening.
607+
/// For some RDBMSs physical connection may become broken but connection pool, which
608+
/// is in charge of logical connections, is not aware of it.
609+
/// In such cases connection pool provides connection
610+
/// which is dead on arrival and causes exception on first use of it.
611+
/// Such connection should be re-created and re-opened. The extra check
612+
/// tests connection by making "first use" of it, if check failed connection
613+
/// will be restored automatically.
606614
/// </summary>
607615
public bool EnsureConnectionIsAlive
608616
{

Orm/Xtensive.Orm/Orm/Configuration/Elements/DatabaseConfigurationElement.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright (C) 2012 Xtensive LLC.
2-
// All rights reserved.
3-
// For conditions of distribution and use, see license.
1+
// Copyright (C) 2012-2024 Xtensive LLC.
2+
// This code is distributed under MIT license terms.
3+
// See the License.txt file in the project root for more information.
44
// Created by: Denis Krjuchkov
55
// Created: 2012.02.08
66

@@ -24,7 +24,7 @@ public class DatabaseConfigurationElement : ConfigurationCollectionElementBase
2424
public override object Identifier { get { return Name; } }
2525

2626
/// <summary>
27-
/// <see cref="DatabaseConfiguration.Name" copy="true"/>
27+
/// <see cref="DatabaseConfiguration.Name" />
2828
/// </summary>
2929
[ConfigurationProperty(NameElementName, IsKey = true)]
3030
public string Name
@@ -34,7 +34,7 @@ public string Name
3434
}
3535

3636
/// <summary>
37-
/// <see cref="DatabaseConfiguration.RealName" copy="true"/>
37+
/// <see cref="DatabaseConfiguration.RealName" />
3838
/// </summary>
3939
[ConfigurationProperty(RealNameElementName)]
4040
public string RealName
@@ -44,7 +44,7 @@ public string RealName
4444
}
4545

4646
/// <summary>
47-
/// <see cref="DatabaseConfiguration.MinTypeId" copy="true"/>
47+
/// <see cref="DatabaseConfiguration.MinTypeId" />
4848
/// </summary>
4949
[ConfigurationProperty(MinTypeIdElementName, DefaultValue = TypeInfo.MinTypeId)]
5050
public int MinTypeId
@@ -54,7 +54,7 @@ public int MinTypeId
5454
}
5555

5656
/// <summary>
57-
/// <see cref="DatabaseConfiguration.MaxTypeId" copy="true"/>
57+
/// <see cref="DatabaseConfiguration.MaxTypeId" />
5858
/// </summary>
5959
[ConfigurationProperty(MaxTypeIdElementName, DefaultValue = int.MaxValue)]
6060
public int MaxTypeId

0 commit comments

Comments
 (0)