Skip to content

Commit d97d95f

Browse files
egorshulgagewarren
andauthored
Update links to "LINQ: Building an IQueryable Provider" tutorial (#4122)
* replace linq queryable provider links Co-authored-by: Genevieve Warren <[email protected]>
1 parent 77cd7ea commit d97d95f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

xml/System.Linq/IOrderedQueryable.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
5252
This interface represents the result of a sorting query that calls the method(s) <xref:System.Linq.Queryable.OrderBy%2A>, <xref:System.Linq.Queryable.OrderByDescending%2A>, <xref:System.Linq.Queryable.ThenBy%2A> or <xref:System.Linq.Queryable.ThenByDescending%2A>. When <xref:System.Linq.IQueryProvider.CreateQuery%2A> is called and passed an expression tree that represents a sorting query, the resulting <xref:System.Linq.IQueryable> object must be of a type that implements <xref:System.Linq.IOrderedQueryable>.
5353
54-
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://go.microsoft.com/fwlink/?LinkID=112370) on MSDN Blogs.
54+
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://docs.microsoft.com/archive/blogs/mattwar/linq-building-an-iqueryable-provider-part-i).
5555
5656
]]></format>
5757
</remarks>

xml/System.Linq/IOrderedQueryable`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
7272
This interface represents the result of a sorting query that calls the method(s) <xref:System.Linq.Queryable.OrderBy%2A>, <xref:System.Linq.Queryable.OrderByDescending%2A>, <xref:System.Linq.Queryable.ThenBy%2A> or <xref:System.Linq.Queryable.ThenByDescending%2A>. When <xref:System.Linq.IQueryProvider.CreateQuery%60%601%28System.Linq.Expressions.Expression%29> is called and passed an expression tree that represents a sorting query, the resulting <xref:System.Linq.IQueryable%601> object must be of a type that implements <xref:System.Linq.IOrderedQueryable%601>.
7373
74-
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://go.microsoft.com/fwlink/?LinkID=112370) on MSDN Blogs.
74+
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://docs.microsoft.com/archive/blogs/mattwar/linq-building-an-iqueryable-provider-part-i).
7575
7676
]]></format>
7777
</remarks>

xml/System.Linq/IQueryProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
## Remarks
3939
The <xref:System.Linq.IQueryProvider> interface is intended for implementation by query providers.
4040
41-
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://go.microsoft.com/fwlink/?LinkID=112370) on MSDN Blogs.
41+
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://docs.microsoft.com/archive/blogs/mattwar/linq-building-an-iqueryable-provider-part-i).
4242
4343
]]></format>
4444
</remarks>

xml/System.Linq/IQueryable.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
4545
The <xref:System.Linq.IQueryable> interface inherits the <xref:System.Collections.IEnumerable> interface so that if it represents a query, the results of that query can be enumerated. Enumeration causes the expression tree associated with an <xref:System.Linq.IQueryable> object to be executed. The definition of "executing an expression tree" is specific to a query provider. For example, it may involve translating the expression tree to an appropriate query language for the underlying data source. Queries that do not return enumerable results are executed when the <xref:System.Linq.IQueryProvider.Execute%2A> method is called.
4646
47-
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://go.microsoft.com/fwlink/?LinkID=112370) on MSDN Blogs.
47+
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://docs.microsoft.com/archive/blogs/mattwar/linq-building-an-iqueryable-provider-part-i).
4848
4949
]]></format>
5050
</remarks>

xml/System.Linq/IQueryable`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
6969
The `static` (`Shared` in Visual Basic) methods defined in the class <xref:System.Linq.Queryable> (except for <xref:System.Linq.Queryable.AsQueryable%2A>, <xref:System.Linq.Queryable.ThenBy%2A>, and <xref:System.Linq.Queryable.ThenByDescending%2A>) extend objects of types that implement the <xref:System.Linq.IQueryable%601> interface.
7070
71-
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://go.microsoft.com/fwlink/?LinkID=112370) on MSDN Blogs.
71+
For more information about how to create your own LINQ provider, see [LINQ: Building an IQueryable Provider](https://docs.microsoft.com/archive/blogs/mattwar/linq-building-an-iqueryable-provider-part-i).
7272
7373
]]></format>
7474
</remarks>

0 commit comments

Comments
 (0)