Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/DataStax.AstraDB.DataApi/Tables/Table.cs
Original file line number Diff line number Diff line change
Expand Up @@ -432,11 +432,11 @@
/// <summary>
/// Find rows in the table.
///
/// The Find() methods return a <see cref="FindEnumerator{T,T,SortBuilder{T}}"/> object that can be used to further structure the query

Check warning on line 435 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

Type parameter declaration must be an identifier not a type. See also error CS0081.

Check warning on line 435 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

XML comment has syntactically incorrect cref attribute 'FindEnumerator{T,T,SortBuilder{T}}'
/// by adding Sort, Projection, Skip, Limit, etc. to affect the final results.
///
/// The <see cref="FindEnumerator{T,T,SortBuilder{T}}"/> object can be directly enumerated both synchronously and asynchronously.

Check warning on line 438 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

Type parameter declaration must be an identifier not a type. See also error CS0081.

Check warning on line 438 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

XML comment has syntactically incorrect cref attribute 'FindEnumerator{T,T,SortBuilder{T}}'
/// Secondarily, the results can be paged through manually by using the results of <see cref="FindEnumerator{T,T,SortBuilder{T}}.ToCursor()"/>.

Check warning on line 439 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

Type parameter declaration must be an identifier not a type. See also error CS0081.

Check warning on line 439 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

XML comment has syntactically incorrect cref attribute 'FindEnumerator{T,T,SortBuilder{T}}.ToCursor()'
/// </summary>
/// <returns></returns>
/// <example>
Expand Down Expand Up @@ -482,9 +482,9 @@
/// {
/// //handle each row
/// }
/// </code>

Check warning on line 485 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

XML comment has badly formed XML -- 'End tag 'code' does not match the start tag 'BookRow'.'
/// </example>

Check warning on line 486 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

XML comment has badly formed XML -- 'End tag 'example' does not match the start tag 'code'.'
public FindEnumerator<T, T, SortBuilder<T>> Find(Filter<T> filter)

Check warning on line 487 in src/DataStax.AstraDB.DataApi/Tables/Table.cs

View workflow job for this annotation

GitHub Actions / build

XML comment has badly formed XML -- 'Expected an end tag for element 'example'.'
{
return Find(filter, null);
}
Expand Down Expand Up @@ -1084,12 +1084,6 @@
return optionsTree.ToList();
}

private List<CommandOptions> GetOptionsTree()
{
var optionsTree = _commandOptions == null ? _database.OptionsTree : _database.OptionsTree.Concat(new[] { _commandOptions });
return optionsTree.ToList();
}

internal Command CreateCommand(string name)
{
var optionsTree = GetOptionsTree().ToArray();
Expand Down
Loading