You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.5 KiB
42 lines
1.5 KiB
/* Copyright 2010-2011 10gen Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
namespace MongoDB.Driver.Linq {
|
|
/// <summary>
|
|
/// Static class that contains the Mongo Linq extension methods.
|
|
/// </summary>
|
|
public static class MongoLinqExtensionMethods {
|
|
/// <summary>
|
|
/// Returns an instance of IQueryable{{T}} for a MongoCollection.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the returned documents.</typeparam>
|
|
/// <param name="collection">The name of the collection.</param>
|
|
/// <returns>An instance of IQueryable{{T}} for a MongoCollection.</returns>
|
|
public static IQueryable<T> AsQueryable<T>(
|
|
this MongoCollection collection
|
|
) {
|
|
var provider = new MongoQueryProvider(collection);
|
|
return new MongoQueryable<T>(provider);
|
|
}
|
|
}
|
|
}
|