Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for issues #106: Reduced warnings in xml comments #108

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Source/EntityFramework.Extended/Caching/CacheManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace EntityFramework.Caching
/// </para>
/// <para>
/// The CacheManager also supports tagging the cache entry to support expiring by tag. <see cref="CacheKey"/> supports a list
/// of tags to associate with the cache entry. Use <see cref="Expire"/> to evict the cache entry by <see cref="CacheTag"/>.
/// of tags to associate with the cache entry. Use <see cref="Expire(EntityFramework.Caching.CacheTag)"/> to evict the cache entry by <see cref="CacheTag"/>.
/// </para>
/// </remarks>
/// <example>
Expand Down
6 changes: 3 additions & 3 deletions Source/EntityFramework.Extended/Caching/Query/Evaluator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace EntityFramework.Caching
internal static class Evaluator
{
/// <summary>
/// Performs evaluation & replacement of independent sub-trees
/// Performs evaluation &amp; replacement of independent sub-trees
/// </summary>
/// <param name="expression">The root of the expression tree.</param>
/// <param name="fnCanBeEvaluated">A function that decides whether a given expression node can be part of the local function.</param>
Expand All @@ -25,7 +25,7 @@ public static Expression PartialEval(Expression expression, Func<Expression, boo
}

/// <summary>
/// Performs evaluation & replacement of independent sub-trees
/// Performs evaluation &amp; replacement of independent sub-trees
/// </summary>
/// <param name="expression">The root of the expression tree.</param>
/// <returns>A new tree with sub-trees evaluated and replaced.</returns>
Expand All @@ -40,7 +40,7 @@ private static bool CanBeEvaluatedLocally(Expression expression)
}

/// <summary>
/// Evaluates & replaces sub-trees when first candidate is reached (top-down)
/// Evaluates &amp; replaces sub-trees when first candidate is reached (top-down)
/// </summary>
class SubtreeEvaluator : ExpressionVisitor
{
Expand Down
4 changes: 2 additions & 2 deletions Source/EntityFramework.Extended/Extensions/BatchExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static int Delete<TEntity>(
/// Executes a delete statement using the query to filter the rows to be deleted.
/// </summary>
/// <typeparam name="TEntity">The type of the entity.</typeparam>
/// <param name="source">The <see cref="IQueryable`1"/> used to generate the where clause for the delete statement.</param>
/// <param name="source">The <see cref="IQueryable{T}"/> used to generate the where clause for the delete statement.</param>
/// <returns>The number of row deleted.</returns>
/// <example>Delete all users with email domain @test.com.
/// <code><![CDATA[
Expand Down Expand Up @@ -144,7 +144,7 @@ public static Task<int> DeleteAsync<TEntity>(
/// Executes a delete statement asynchronously using the query to filter the rows to be deleted.
/// </summary>
/// <typeparam name="TEntity">The type of the entity.</typeparam>
/// <param name="source">The <see cref="IQueryable`1"/> used to generate the where clause for the delete statement.</param>
/// <param name="source">The <see cref="IQueryable{T}"/> used to generate the where clause for the delete statement.</param>
/// <returns>The number of row deleted.</returns>
/// <example>Delete all users with email domain @test.com.
/// <code><![CDATA[
Expand Down
2 changes: 1 addition & 1 deletion Source/EntityFramework.Extended/Future/FutureValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public T Value
}

/// <summary>
/// Performs an implicit conversion from <see cref="T:EntityFramework.Future.FutureValue`1"/> to <see cref="T"/>.
/// Performs an implicit conversion from <see cref="FutureValue{T}"/> to <typeparamref name="T"/>.
/// </summary>
/// <param name="futureValue">The future value.</param>
/// <returns>The result of forcing this lazy value.</returns>
Expand Down