Skip to content

Commit 1aaeb03

Browse files
committed
Update Summary
1 parent d7fb275 commit 1aaeb03

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

Orm/Xtensive.Orm/Orm/Rse/MappedColumn.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ public sealed class MappedColumn : Column
1717
{
1818
private const string ToStringFormat = "{0} = {1}";
1919

20-
private readonly ColumnInfoRef _columnInfo;
20+
private readonly ColumnInfoRef columnInfo;
2121
/// <summary>
2222
/// Gets the reference that describes a column.
2323
/// </summary>
24-
public ref readonly ColumnInfoRef ColumnInfoRef => ref _columnInfo;
24+
public ref readonly ColumnInfoRef ColumnInfoRef => ref columnInfo;
2525

2626
/// <inheritdoc/>
2727
public override string ToString()
@@ -77,7 +77,7 @@ public MappedColumn(in ColumnInfoRef columnInfoRef, int index, Type type)
7777
public MappedColumn(in ColumnInfoRef columnInfoRef, string name, int index, Type type)
7878
: base(name, index, type, null)
7979
{
80-
_columnInfo = columnInfoRef;
80+
columnInfo = columnInfoRef;
8181
}
8282

8383
#endregion
@@ -87,13 +87,13 @@ public MappedColumn(in ColumnInfoRef columnInfoRef, string name, int index, Type
8787
private MappedColumn(MappedColumn column, string newName)
8888
: base(newName, column.Index, column.Type, column)
8989
{
90-
_columnInfo = column.ColumnInfoRef;
90+
columnInfo = column.ColumnInfoRef;
9191
}
9292

9393
private MappedColumn(MappedColumn column, int newIndex)
9494
: base(column.Name, newIndex, column.Type, column)
9595
{
96-
_columnInfo = column.ColumnInfoRef;
96+
columnInfo = column.ColumnInfoRef;
9797
}
9898

9999
#endregion

Orm/Xtensive.Orm/Orm/Services/QueryBuilding/QueryTranslationResult.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ namespace Xtensive.Orm.Services
1717
public readonly struct QueryTranslationResult
1818
{
1919
/// <summary>
20-
/// Gets or sets SQL DOM query.
20+
/// Gets <see cref="SqlSelect"/> query.
2121
/// </summary>
2222
public SqlSelect Query { get; }
2323

2424
/// <summary>
25-
/// Gets or sets parameter bindings for translated query.
25+
/// Gets parameter bindings for translated query.
2626
/// </summary>
2727
public IReadOnlyList<QueryParameterBinding> ParameterBindings { get; }
2828

Orm/Xtensive.Orm/Orm/TypeReference.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ namespace Xtensive.Orm
1717
public readonly struct TypeReference
1818
{
1919
/// <summary>
20-
/// Gets or sets the referenced type.
20+
/// Gets the referenced type.
2121
/// </summary>
2222
public TypeInfo Type { get; }
2323

2424
/// <summary>
25-
/// Gets or sets the type reference accuracy.
25+
/// Gets the type reference accuracy.
2626
/// </summary>
2727
public TypeReferenceAccuracy Accuracy { get; }
2828

0 commit comments

Comments
 (0)