<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Hacking LINQ Expressions: Select With Index</title>
	<atom:link href="http://solutionizing.net/2009/09/15/hacking-linq-expressions-select-with-index/feed/" rel="self" type="application/rss+xml" />
	<link>http://solutionizing.net/2009/09/15/hacking-linq-expressions-select-with-index/</link>
	<description>Random thoughts on custom development in SharePoint.</description>
	<lastBuildDate>Fri, 06 Jan 2012 00:13:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Keith Dahlby</title>
		<link>http://solutionizing.net/2009/09/15/hacking-linq-expressions-select-with-index/#comment-913</link>
		<dc:creator><![CDATA[Keith Dahlby]]></dc:creator>
		<pubDate>Wed, 02 Feb 2011 00:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://solutionizing.net/?p=671#comment-913</guid>
		<description><![CDATA[I believe LinqBridge includes the Select() overload in question, so it should work. An IEnumerable&lt;T&gt; version can be pieced together from code earlier in the post:

&lt;pre&gt;public static IEnumerable&lt;TResult&gt; SelectMany&lt;TSource, TResult&gt;(
    this IEnumerable&lt;TSource&gt; source,
    Func&lt;TSource, SelectIndexProvider&gt; collectionSelector,
    Func&lt;TSource, int, TResult&gt; resultSelector)
{
    return source.Select(resultSelector);
}&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>I believe LinqBridge includes the Select() overload in question, so it should work. An IEnumerable&lt;T&gt; version can be pieced together from code earlier in the post:</p>
<pre>public static IEnumerable&lt;TResult&gt; SelectMany&lt;TSource, TResult&gt;(
    this IEnumerable&lt;TSource&gt; source,
    Func&lt;TSource, SelectIndexProvider&gt; collectionSelector,
    Func&lt;TSource, int, TResult&gt; resultSelector)
{
    return source.Select(resultSelector);
}</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Dimperio</title>
		<link>http://solutionizing.net/2009/09/15/hacking-linq-expressions-select-with-index/#comment-912</link>
		<dc:creator><![CDATA[Brandon Dimperio]]></dc:creator>
		<pubDate>Tue, 01 Feb 2011 21:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://solutionizing.net/?p=671#comment-912</guid>
		<description><![CDATA[Is there a way to make this work with linqBridge in .net 2.0? the hinge is IQueryable(of T).

http://www.albahari.com/nutshell/linqbridge.aspx]]></description>
		<content:encoded><![CDATA[<p>Is there a way to make this work with linqBridge in .net 2.0? the hinge is IQueryable(of T).</p>
<p><a href="http://www.albahari.com/nutshell/linqbridge.aspx" rel="nofollow">http://www.albahari.com/nutshell/linqbridge.aspx</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

