Skip to content

Commit

Permalink
Made linq stuff internal.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwin committed Jun 12, 2010
1 parent 0b34128 commit 9565f34
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions source/MongoDB/Linq/DocumentQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ namespace MongoDB.Linq {
/// It is not meant to be used outside of expressions, since most functions and operators return
/// fake data and are only used to extract parameter information from expressions.
/// </summary>
public class DocumentQuery {

internal class DocumentQuery {
/// <summary>
///
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion source/MongoDB/Linq/Grouping.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace MongoDB.Linq
/// </summary>
/// <typeparam name="TKey">The type of the key.</typeparam>
/// <typeparam name="TElement">The type of the element.</typeparam>
public class Grouping<TKey, TElement> : IGrouping<TKey, TElement>
internal class Grouping<TKey, TElement> : IGrouping<TKey, TElement>
{
private readonly TKey _key;
private readonly IEnumerable<TElement> _group;
Expand Down
2 changes: 1 addition & 1 deletion source/MongoDB/Linq/MongoQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace MongoDB.Linq
///
/// </summary>
/// <typeparam name="T"></typeparam>
public class MongoQuery<T> : IOrderedQueryable<T>, IMongoQueryable
internal class MongoQuery<T> : IOrderedQueryable<T>, IMongoQueryable
{
private readonly Expression _expression;
private readonly MongoQueryProvider _provider;
Expand Down
2 changes: 1 addition & 1 deletion source/MongoDB/Linq/MongoQueryProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace MongoDB.Linq
/// <summary>
///
/// </summary>
public class MongoQueryProvider : IQueryProvider
internal class MongoQueryProvider : IQueryProvider
{
private readonly string _collectionName;
private readonly IMongoDatabase _database;
Expand Down
2 changes: 1 addition & 1 deletion source/MongoDB/Linq/MongoQueryable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// <summary>
///
/// </summary>
public static class MongoQueryable
internal static class MongoQueryable
{
/// <summary>
/// Keys the specified document.
Expand Down

0 comments on commit 9565f34

Please sign in to comment.