Skip to content

Commit

Permalink
Merge pull request #99 from Ali-YousefiTelori/develop
Browse files Browse the repository at this point in the history
remove GetReadableQueryable
  • Loading branch information
Ali-YousefiTelori authored Dec 19, 2023
2 parents dc88204 + b3303d0 commit 43d8241
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,17 +240,6 @@ public virtual IEasyWritableQueryableAsync<TEntity> GetWritableOf<TEntity>()
return AddDisposable(GetDatabase().GetWritableOf<TEntity>());
}

/// <summary>
///
/// </summary>
/// <typeparam name="TEntity"></typeparam>
/// <returns></returns>
public virtual IEasyReadableQueryableAsync<TEntity> GetReadableQueryable<TEntity>()
where TEntity : class
{
return AddDisposable(GetDatabase().GetReadableOf<TEntity>());
}

/// <summary>
///
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,5 @@ IEasyReadableQueryableAsync<TEntity> GetReadableOf<TEntity>()
/// <returns></returns>
IEasyWritableQueryableAsync<TEntity> GetWritableOf<TEntity>()
where TEntity : class;

/// <summary>
///
/// </summary>
/// <typeparam name="TEntity"></typeparam>
/// <returns></returns>
IEasyReadableQueryableAsync<TEntity> GetReadableQueryable<TEntity>()
where TEntity : class;
}
}

0 comments on commit 43d8241

Please sign in to comment.