active questions tagged linq - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:29:39Z http://stackoverflow.com/feeds/tag/linq http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1830041/how-to-most-elegantly-iterate-through-parallel-collections-in-c 3 How to most elegantly iterate through parallel collections in C#? Sergey Aldoukhov 2009-12-02T01:03:32Z 2009-12-02T01:30:31Z <pre><code> var a = new Collection&lt;string&gt; {"a", "b", "c"}; var b = new Collection&lt;int&gt; { 1, 2, 3 }; </code></pre> <p>What is the most elegant way to iterate through both yielding a set of results "a1", "b2", "c3"?</p> http://stackoverflow.com/questions/1829032/linq-to-sql-sorting-by-a-related-table 1 LINQ to SQL, sorting by a related table sf 2009-12-01T21:26:04Z 2009-12-01T22:38:52Z <p>I'm trying to order the values in a related table using <a href="http://en.wikipedia.org/wiki/Language%5FIntegrated%5FQuery#LINQ%5Fto%5FSQL" rel="nofollow">LINQ to SQL</a>.</p> <p>I have 2 tables. Menu and MenuSection. They are related one to many on Menu.MenuId == MenuSection.MenuId</p> <p>Currently, I'm pulling this information using the following query</p> <pre><code>var menus = from m in _context.Menus select m; </code></pre> <p>This gets fed into an <a href="http://en.wikipedia.org/wiki/ASP.NET%5FMVC%5FFramework" rel="nofollow">ASP.NET MVC</a> page and works fine.</p> <p>I'd like to be able to sort the data the column MenuSection.Order</p> <p>I've tried doing this:</p> <pre><code>var menus = from m in _context.Menus join ms in _context.MenuSections on m.MenuId equals ms.MenuId orderby ms.Order ascending select m; </code></pre> <p>But it's bringing back a set of data that is incorrect. It displays repeated Menu information.</p> http://stackoverflow.com/questions/1827239/linq-nhibernate-problem-with-or-statement 1 Linq.NHibernate problem with OR statement vIceBerg 2009-12-01T16:19:45Z 2009-12-01T21:48:29Z <p>NOTE: all the code is written Top of my head. It can contains some mistakes. Just get the overall point of this question)</p> <p>Taking this class definition: (reduced for simplicity)</p> <pre><code>public class CodedValue { public string Code { get; set; } public string Value {get; set; } } </code></pre> <p>Taking thoses objects:</p> <pre><code>CodedValue cv1 = new CodedValue(){ Code = "A", Value = "1" }; CodedValue cv2 = new CodedValue(){ Code = "B", Value = "2" }; IList&lt;CodedValue&gt; cvList = new List&lt;CodedValue&gt;(); cvList.Add(cv1); cvList.Add(cv2); </code></pre> <p>cvList contains a list of CodedValue to filter.</p> <p>Lets pretend that my database contains thoses records:</p> <pre><code>CODE VALUE A 1 A 2 B 1 B 2 </code></pre> <p>Now, I want to retrieve all objects where the codedvalue is in the list</p> <pre><code>var filter = from o in MyRepository.List() where cvList.Contains(o.CodedValue) select o; </code></pre> <p>NHibernate translate this Linq to this:</p> <pre><code>select [Fields...] from [Table...] where Code in ('A', 'B') and Value in ('1', '2'); </code></pre> <p>This is wrong. If you take a look at my records example, this SQL will returns all the rows. The SQL should be translated to:</p> <pre><code>select [Fields...] from [Table...] where (Code = 'A' and Value = '1') or (Code = 'B' and Value = '2'); </code></pre> <p>So, can I get the result I want using Linq? If so, how? If not, how can I achieve that?</p> <p>Thanks</p> http://stackoverflow.com/questions/1828957/c-getting-possible-pairs-from-two-enums 2 C# -Getting Possible pairs from two enums threadpool 2009-12-01T21:11:12Z 2009-12-01T21:23:19Z <p>From two enums ,what is the way to apply LINQ to get pairs</p> <p>like</p> <p>{Red,Car},{Red,Bike},{Green,Car},{Green,Bike},...</p> <pre><code>public enum Color { Red,Green,Blue } public enum Vehicle { Car,Bike } </code></pre> <p>can i use something like</p> <pre><code>var query = from c in Enum.GetValues(typeof(Color)).AsQueryable() from c in Enum.GetValues(typeof(Vehicle)).AsQueryable() select new {..What to fill here?.. } </code></pre> http://stackoverflow.com/questions/1828931/convert-a-dictionarystring-string-to-xml 0 Convert a dictionary<string,string> to xml mrblah 2009-12-01T21:06:13Z 2009-12-01T21:09:00Z <p>I want to convert a dictionary&lt;string,string&gt; to this xml:</p> <pre><code>&lt;root&gt; &lt;key&gt;value&lt;/key&gt; &lt;key2&gt;value2&lt;/key2&gt; &lt;/root&gt; </code></pre> <p>Can this be done using some fancy linq?</p> http://stackoverflow.com/questions/1827586/data-filtering-or-better-linq-query 1 Data filtering or better LINQ query? Alexandra 2009-12-01T17:09:18Z 2009-12-01T21:01:18Z <p>I am using the new WPF toolkit's Chart to plot large data sets. I also have a crosshair tracker that follows the mouse when it's over the chart area to tell exactly what is the value of the nearest data point (see Yahoo! Finance charts).</p> <p>I use the following code to find the closest data point that is lower (or equal) to where the mouse is currently hovering (the nasty detail about the chart is that it actually interpolates the data to tell you what's the EXACT value where you hove your mouse over, even though the mouse is located between the data points):</p> <pre><code>TimeDataPoint point = mainSeries.Find( new Predicate&lt;TimeDataPoint&gt;( delegate(TimeDataPoint p) { return xValue &gt; p.Date &amp;&amp; !mainSeries.Exists(new Predicate&lt;TimeDataPoint&gt;( delegate(TimeDataPoint middlePoint) { return middlePoint.Date &gt; p.Date &amp;&amp; xValue &gt; middlePoint.Date; })); })); </code></pre> <p>[Here, <code>mainSeries</code> is simply a <code>List&lt;TimeDataPoint&gt;</code>]</p> <p>This works very well for relatively small data sets, but once I go up to 12000+ points (this will increase rapidly), the code above slows down to a standstill (it does a run through data 12000+^2 times).</p> <p>I am not very good at constructing queries so I am wondering if it is possible to use a better LINQ query to do this.</p> <p>EDIT: Another idea that was inspired by @Randolpho comment is this: I will search for all points that are lower than given (this will be at most n (here: 12,000+)) and then select a Max&lt;> (which should be also at most O(n)). This should produce the same result but only with order of n operations and thus should be at least a little bit faster...</p> <p>My other alternative is to actually filter the data set and maintain an upper bound on the number of points depending on the level of details the user wants to see. I would rather not go down that road if there's a possibility of having a more efficient query.</p> http://stackoverflow.com/questions/1828509/c-linq-how-to-apply-group-by 2 C# LINQ -How to apply group by? threadpool 2009-12-01T20:01:02Z 2009-12-01T20:15:48Z <p>I am new to linq.From the list of following data,help me how can i apply Group by and other construct to achieve the expected output as given below.</p> <pre><code> List&lt;SalesAnalysis&gt; AnaList = new List&lt;SalesAnalysis&gt;(); AnaList.Add(new SalesAnalysis("P001", 2009, 45000)); AnaList.Add(new SalesAnalysis("P001", 2008, 13000)); AnaList.Add(new SalesAnalysis("P002", 2009, 5000)); AnaList.Add(new SalesAnalysis("P002", 2008, 15000)); AnaList.Add(new SalesAnalysis("P003", 2009, 25000)); AnaList.Add(new SalesAnalysis("P003", 2008, 65000)); AnaList.Add(new SalesAnalysis("P004", 2009, 5000)); AnaList.Add(new SalesAnalysis("P004", 2008, 3000)); AnaList.Add(new SalesAnalysis("P004", 2007, 95000)); AnaList.Add(new SalesAnalysis("P004", 2006, 83000)); class SalesAnalysis { public string ProductCode { get; set; } public int Year { get; set; } public int NumberOfUnitsSold { get; set; } public SalesAnalysis(string productcode, int year, int numberofunitssold) { ProductCode = productcode; Year = year; NumberOfUnitsSold = numberofunitssold; } } </code></pre> <p>conditions :</p> <p>1) Report only needed for the year 2008 and 2009 only</p> <p>2) Numberofunits >=30000 are Top Movement products</p> <p>3) Numberofunits >=10000 to &lt; 30000 are average movement products</p> <p>4) Numberofunits &lt;10000 are poor moving product</p> <p>Expected output:</p> <pre><code>Top Movement Product Code Year Numberofunits P003 2008 65000 P001 2009 45000 Average Movement Product Code Year Numberofunits P003 2009 25000 P002 2008 15000 P001 2008 13000 Poor Movement Product Code Year Numberofunits P002 2009 5000 P004 2009 5000 P004 2008 3000 </code></pre> http://stackoverflow.com/questions/1827892/help-with-with-a-traslation-in-linq-to-xml 0 Help with with a traslation in Linq to Xml. Colour Blend 2009-12-01T18:15:57Z 2009-12-01T19:09:18Z <p>Can someone help with an explanation of what this means:</p> <pre><code>... .Select(Func&lt;XElement, XElement&gt;selector) </code></pre> <p>Please an example of what should go in as parameter will be appreciated.</p> <p>Also found it a little bit difficult naming this question. Suggestion will also be appreciated.</p> http://stackoverflow.com/questions/1827224/orderbydescending-per-msdn-what-on-earth-does-this-mean 1 OrderByDescending() per MSDN, what on earth does this mean? Ryan 2009-12-01T16:17:46Z 2009-12-01T19:02:40Z <p>Can someone please help be take apart the elements here and help me understand what they are?</p> <pre><code>public static IOrderedEnumerable&lt;TSource&gt; OrderByDescending&lt;TSource, TKey&gt;( this IEnumerable&lt;TSource&gt; source, Func&lt;TSource, TKey&gt; keySelector ) </code></pre> <p>What is TSource and TKey? What is a keySelector? What the heck is an IOrderedEnumerable?</p> <p>What does Func&lt;> do??</p> <p>Why is MSDN so cryptic?</p> http://stackoverflow.com/questions/1827040/wcf-linq-to-sql-table-system-data-linq-table-cannot-be-serialized 0 WCF Linq to SQL Table - System.Data.Linq.Table cannot be serialized. Mastro 2009-12-01T15:47:12Z 2009-12-01T17:54:25Z <p>I can't figure this out as I go through demos that seem to work. I have a WCF service I was trying to use Linq to SQL with. However, all I ever get is the error System.Data.Linq.Table cannot be serialized. So I started with my own class thinking I could build it back up until get the error. Problem is I get the error even trying to use an empty class. Just using the "As System.Linq.Table(Of xxx)" on my method gives me this error.</p> <p><strong><em>Type 'System.Data.Linq.Table`1[LinqADMRequest2b]' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. See the Microsoft .NET Framework documentation for other supported types.</em></strong> </p> <pre><code> Imports System.ServiceModel Imports System.ServiceModel.Activation Imports System.Runtime.Serialization Imports System.Collections.Generic Imports Linq &lt;ServiceContract(Namespace:="")> _ &lt;ServiceBehavior(IncludeExceptionDetailInFaults:=True)> _ &lt;AspNetCompatibilityRequirements(RequirementsMode:=AspNetCompatibilityRequirementsMode.Allowed)> _ Public Class ComplyTrackWCFService _ Public Function GetTestRequests() As System.Data.Linq.Table(Of LinqADMRequest2b) 'Dim ct As New Linq2.ComplyTrackDataContext() 'Dim queryresults = ct.ADMRequests 'ct.ADMRequestGetListByUser("", "155") 'Return queryresults End Function End Class &lt;DataContract()> _ &lt;Serializable()> _ Public Class LinqADMRequest2b Implements ISerializable Private _firstName As String _ Public Property FirstName() As String Get Return _firstName End Get Set(ByVal Value As String) _firstName = Value End Set End Property Public Sub GetObjectData(ByVal info As System.Runtime.Serialization.SerializationInfo, ByVal context As System.Runtime.Serialization.StreamingContext) Implements System.Runtime.Serialization.ISerializable.GetObjectData End Sub End Class </code></pre> <p>As you can see the GetTestRequests() doesn't do anything other then say it's going to return a System.Data.Linq.Table(Of LinqADMRequest2b)</p> <p>I can't get the LinqADMRequest2b to serialize.</p> <p><strong><em>Type 'System.Data.Linq.Table`1[LinqADMRequest2b]' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. See the Microsoft .NET Framework documentation for other supported types.</em></strong> </p> http://stackoverflow.com/questions/1827348/handle-a-dynamic-select-with-dyanmic-linq 1 Handle a Dynamic Select With Dyanmic Linq Clever Human 2009-12-01T16:33:01Z 2009-12-01T16:43:31Z <p>I am using the Dynamic Linq Library that Scott Guthrie describes <a href="http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx#5573976" rel="nofollow">here</a>. </p> <p>Scott Guthrie's examples are great and I have used the dynamic Where statements quite a bit. </p> <p>Now, however, I am faced with a situation where I need to use the dynamic select functionality. Scott Guthrie shows a screenshot of this functionality (in the very last screenshot in the article) but very cleverly never explains it. </p> <p>The problem is, even though the code compiles and runs, I don't see how it can possibly work in any useful manner. Perhaps with reflection? </p> <p>Here is an example (remember, you must use the Dynamic Linq Library that Guthrie describes in the article above, this is not the normal Linq System.Linq). </p> <p>In my sample here, I have a Users table with a UserId, FirstName, and LastName fields. But it really doesn't matter what database you use. The issue is very simple to reproduce. Here is my sample code: </p> <p>First make sure you have this using statement on top: </p> <pre><code> using System.Linq.Dynamic; </code></pre> <p>Then you can run the following code:</p> <pre><code>using (DataClasses1DataContext dcdc = new DataClasses1DataContext()) { var x = dcdc.Users.Select("new(UserId, FirstName, LastName)"); foreach (var item in x) { Console.WriteLine(item.ToString()); } } </code></pre> <p>As you can see, this compiles and runs just fine. You get all your records back from the database. However, there is no way I can find to actually <em>access</em> the members of the new anonymous type.</p> <p>Because the Select query is a string, there is no type inference at design time. So I cannot write:</p> <pre><code>Console.WriteLine(item.UserId); </code></pre> <p>The compiler has no idea that the anonymous type item has a member named UserId. So that code will not even compile (even though if you pause the debugger during the For..Each loop you will see that the debug window sees that there are UserId, FirstName and LastName members. </p> <p>So... how is this supposed to work? How do you gain access to the members of the anonymous type?</p> http://stackoverflow.com/questions/1827259/negating-a-method-call-in-an-expression-tree 0 Negating a method call in an Expression tree Marcus 2009-12-01T16:22:41Z 2009-12-01T16:25:49Z <p>I'm generating a c# Linq expression dynamically as below, which will (in the example below) run string.Contains against the collection values.</p> <pre><code>var dynamicMethod = "Contains"; var parameter = Expression.Parameter(typeof (MyClass), "type"); var property = Expression.Property(parameter, "MyProperty"); var constantValue = Expression.Constant("PropertyValue", property.Type); var method = property.Type.GetMethod(dynamicMethod, new[] {property.Type}); var expression = Expression.Call(property, method, constantValue); </code></pre> <p>For the above code, I'd want something equivalent to !Contains.</p> <p>Any suggestions?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1779440/does-linq-remove-the-need-for-hibernate 2 Does Linq Remove The Need For Hibernate? ChloeRadshaw 2009-11-22T18:04:04Z 2009-12-01T16:24:12Z <p>Just wondering whether anyone will still use Hibernate once they move to C# 3</p> <p>Are these mutually exclusive??</p> http://stackoverflow.com/questions/1827161/converting-linq-memberexpression-lambda-to-work-on-class-with-reference 1 Converting Linq MemberExpression lambda to work on class with reference Thomas G. Mayfield 2009-12-01T16:04:50Z 2009-12-01T16:12:14Z <p>For this question, I'll use the standard structure of Products (with an IsActive flag) and OrderItems (that each reference a Product). I also have a query builder that generates Linq expressions used to query products. A sample filter would let the user find active/inactive products, generating a Linq expression like:</p> <pre><code>Expression&lt;Func&lt;Product, bool&gt;&gt; testProductActive = product =&gt; !product.IsActive; </code></pre> <p>I want to take that expression and use it to test an <code>IQueryable&lt;OrderItem&gt;</code>. I can do it with in-memory collections using <code>Expression.Invoke</code>:</p> <pre><code>public static Expression&lt;Func&lt;TDestination, TResult&gt;&gt; Translate&lt;TSource, TDestination, TResult&gt;(this Expression&lt;Func&lt;TSource, TResult&gt;&gt; @this, Expression&lt;Func&lt;TDestination, TSource&gt;&gt; getSourceFromDestination) { ParameterExpression param = Expression.Parameter(typeof(TDestination), "arg"); Expression invokedGetSource = Expression.Invoke(getSourceFromDestination, param); Expression invokedOriginalBody = Expression.Invoke(@this, invokedGetSource); Expression&lt;Func&lt;TDestination, TResult&gt;&gt; result = Expression.Lambda&lt;Func&lt;TDestination, TResult&gt;&gt;(invokedOriginalBody, param); return result; } </code></pre> <p>Which I would call like:</p> <pre><code>Expression&lt;Func&lt;OrderItem, bool&gt;&gt; testOrderItemProductActive = testProductActive.Translate&lt;Product, OrderItem, bool&gt;(orderItem =&gt; orderItem.Product); </code></pre> <p>But NHibernate.Linq (and from what I've seen in questions, Linq to Entities) does not support <code>Expression.Invoke</code>.</p> <p>Is there a way to take the MemberExpression from <code>testProductActive</code> and turn it into <code>!orderItem.Product.IsActive</code>?</p> <p><hr></p> <p>Note: In a real-life example, I would have a collection of <code>Expression&lt;Func&lt;Product, bool&gt;&gt;</code> expressions generated by visible filters that would all need converted. Right now I've got my filters generating expressions for both types of records, but I'd love to drop the duplication and make it so an existing filter could be used for a different type of record without changing the filter's own code.</p> http://stackoverflow.com/questions/1823554/converting-linq-to-xml-query-from-c-to-vb-net-can-you-spot-my-error 0 Converting Linq to XML query from C# to VB.Net. Can you spot my error? Cory House 2009-12-01T01:54:24Z 2009-12-01T15:33:31Z <p>I'm converting the Linq query below from C# to VB.Net. Can you spot my error? The query joins 3 XML datasets. Thanks in advance!</p> <p>C# - This one works great.</p> <pre><code>List&lt;Course&gt; courses = (from course in CourseXML.Descendants(ns + "row") join coursecategory in CourseCategoryXML.Descendants("Table") on (string)course.Attribute("code") equals (string)coursecategory.Element("DATA") join category in CategoryXML.Descendants("Table") on (string)coursecategory.Element("GRP") equals (string)category.Element("GRP") where (string)coursecategory.Element("RECTYPE") == "C" select new Course { CategoryCode = category.Element("GRP").Value, Code = course.Attribute("code").Value }).ToList&lt;Course&gt;(); </code></pre> <p>VB - I'm getting no results from this, so I suspect I'm either casting improperly or joining improperly.</p> <pre><code>Dim result = (From course In CourseXML.Descendants(ns + "row") _ Join coursecategory In CourseCategoryXML.Descendants("Table") On CType(course.Attribute("code"), String) Equals CType(coursecategory.Element("DATA"), String) _ Join category In CategoryXML.Descendants("Table") On CType(coursecategory.Element("GRP"), String) Equals CType(category.Element("GRP"), String) _ Where CType(coursecategory.Element("RECTYPE"), String) = "C" _ Select New Course() With _ { _ .CategoryCode = category.Element("GRP").Value, _ .Code = course.Attribute("code").Value _ }).ToList() </code></pre> http://stackoverflow.com/questions/1823499/return-string-from-linq-iqueryable-object 0 return string[] from LINQ IQueryable object? Bay Wolf 2009-12-01T01:29:06Z 2009-12-01T15:16:49Z <p>I'm trying to work with the .NET AJAX autocompletion extension. The extension is expecting the following...</p> <pre><code>public static string[] GetCompletionList(string prefixText, int count, string contextKey) </code></pre> <p>My database queries are in a LINQ var object. I'm getting compile-time errors about not being able to convert type IQueryable to string[].</p> <pre><code>InventoryDataContext assets = new InventoryDataContext(); var assetsInStorage = from a in assets.Assets where a.Name.Contains(prefixText) orderby a.Name ascending select new[] { a.Manufacturer.Name, a.Name }; return (string[])assetsInStorage; </code></pre> http://stackoverflow.com/questions/1659692/argumentoutofrangeexception-when-replacing-items-in-an-observablecollectiont 1 ArgumentOutOfRangeException when replacing items in an ObservableCollection<T> Flatliner DOA 2009-11-02T06:19:22Z 2009-12-01T15:00:04Z <p>I'm working on a Refresh() extension method for ObservableCollection which adds, removes or replaces items based on a matching key (this means when bound to a DataGrid the grid doesn't re-scroll and items don't change their position unless they were removed).</p> <p>Problem is when I replace items in the ObservableCollection the last item throws an ArgumentOutOfRangeException, what am I missing here?</p> <pre><code>public static void Refresh&lt;TItem, TKey&gt;(this ObservableCollection&lt;TItem&gt; target, IEnumerable&lt;TItem&gt; source, Func&lt;TItem, TKey&gt; keySelector) { var sourceDictionary = source.ToDictionary(keySelector); var targetDictionary = target.ToDictionary(keySelector); var newItems = sourceDictionary.Keys.Except(targetDictionary.Keys).Select(k =&gt; sourceDictionary[k]).ToList(); var removedItems = targetDictionary.Keys.Except(sourceDictionary.Keys).Select(k =&gt; targetDictionary[k]).ToList(); var updatedItems = (from eachKey in targetDictionary.Keys.Intersect(sourceDictionary.Keys) select new { Old = targetDictionary[eachKey], New = sourceDictionary[eachKey] }).ToList(); foreach (var updatedItem in updatedItems) { int index = target.IndexOf(updatedItem.Old); target[index] = updatedItem.New; // ArgumentOutOfRangeException is thrown here } foreach (var removedItem in removedItems) { target.Remove(removedItem); } foreach (var newItem in newItems) { target.Add(newItem); } } </code></pre> http://stackoverflow.com/questions/1826431/lambda-syntax-in-linq-to-db4o 1 Lambda syntax in linq to db4o? boris callens 2009-12-01T14:12:43Z 2009-12-01T14:42:47Z <p>I know the following is possible with linq2db4o</p> <pre><code>from Apple a in db where a.Color.Equals(Colors.Green) select a </code></pre> <p>What I need however is something that allows me to build my query conditionally (like I can in other linq variants)</p> <pre><code>public IEnumerable&lt;Apple&gt; SearchApples (AppleSearchbag bag){ var q = db.Apples; if(bag.Color != null){ q = q.Where(a=&gt;a.Color.Equals(bag.Color)); } return q.AsEnumerable(); } </code></pre> <p>In a real world situation the searchbag will hold many properties and building a giant if-tree that catches all possible combinations of filled in properties would be madman's work.</p> <p>It is possible to first call</p> <pre><code>var q = (from Color c in db select c); </code></pre> <p>and then continue from there. but this is not exactly what I'm looking for.</p> <p>Disclaimer: near duplicate of <a href="http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query">my question</a> of nearly 11 months ago.<br> This one's a bit more clear as I understand the matter better now and I hope by now some of the db4o dev eyes could catch this on this:</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1815497/enumerating-collections-that-are-not-inherently-ienumerable 3 Enumerating Collections that are not inherently IEnumerable ? BillW 2009-11-29T13:05:29Z 2009-12-01T14:07:26Z <p>When you want to recursively enumerate a hierarchical object, selecting some elements based on some criteria, there are numerous examples of techniques like "flattening" and then filtering using Linq : like those found here :</p> <p><a href="http://stackoverflow.com/questions/141467/recursive-list-flattening">link text</a></p> <p>But, when you are enumerating something like the Controls collection of a Form, or the Nodes collection of a TreeView, I have been unable to use these types of techniques because they seem to require an argument (to the extension method) which is an IEnumerable collection : passing in SomeForm.Controls does not compile.</p> <p>The most useful thing I found was this :</p> <p><a href="http://blogs.windowsclient.net/rendle/archive/2008/03/06/recursing-controlcollection.aspx" rel="nofollow">link text</a></p> <p>Which does give you an extension method for Control.ControlCollection with an IEnumerable result you can then use with Linq.</p> <p>I've modified the above example to parse the Nodes of a TreeView with no problem.</p> <pre><code>public static IEnumerable&lt;TreeNode&gt; GetNodesRecursively(this TreeNodeCollection nodeCollection) { foreach (TreeNode theNode in nodeCollection) { yield return theNode; if (theNode.Nodes.Count &gt; 0) { foreach (TreeNode subNode in theNode.Nodes.GetNodesRecursively()) { yield return subNode; } } } } </code></pre> <p>This is the kind of code I'm writing now using the extension method :</p> <pre><code> var theNodes = treeView1.Nodes.GetNodesRecursively(); var filteredNodes = ( from n in theNodes where n.Text.Contains("1") select n ).ToList(); </code></pre> <p>And I think there may be a more elegant way to do this where the constraint(s) are passed in.</p> <p>What I want to know if it is possible to define such procedures generically, so that : at run-time I can pass in the type of collection, as well as the actual collection, to a generic parameter, so the code is independent of whether it's a TreeNodeCollection or Controls.Collection.</p> <p>It would also interest me to know if there's any other way (cheaper ? fastser ?) than that shown in the second link (above) to get a TreeNodeCollection or Control.ControlCollection in a form usable by Linq. </p> <p>A comment by Leppie about 'SelectMany in the SO post linked to first (above) seems like a clue.</p> <p>My experiments with SelectMany have been : well, call them "disasters." :)</p> <p>Appreciate any pointers. I have spent several hours reading every SO post I could find that touched on these areas, and rambling my way into such exotica as the "y-combinator." A "humbling" experience, I might add :)</p> http://stackoverflow.com/questions/1822545/how-to-use-linq-to-entity-to-query-by-contained-objects 3 How to use LINQ-to-Entity to query by contained objects pdiddy 2009-11-30T21:33:10Z 2009-12-01T14:04:02Z <p>Let's say I have a list of Boxes and in a box you can have multiple items.</p> <ul> <li>Box (id)</li> <li>Items (id, boxId)</li> </ul> <p>I'm trying to build a linq to entity query that can return all the boxes that contains ALL specified items.</p> <pre><code>List&lt;Box&gt; FindBoxContainingAllSpecifiedItems(List&lt;int&gt; itemIds) { var q = from box in ctx.Boxes where ??? } </code></pre> <p>Thanks for the help</p> http://stackoverflow.com/questions/1825831/better-way-of-searching-through-lists-than-using-foreach 2 Better way of searching through lists than using foreach MoominTroll 2009-12-01T12:16:41Z 2009-12-01T12:36:49Z <pre><code>list vclAsset&lt;FullAsset&gt; list callsigns&lt;string&gt; foreach(FullAsset fa in vclAsset) { if (callsigns.contains(fa.asset.callsign)) { //do something } } </code></pre> <p>Is there a more elegant way to do the above? A FullAsset object contains an Asset object which in turn has a string "Callsign." Each callsign will be unique, so my list callsigns will only have one of each string, and no two FullAsset objects will share an Asset.callsign variable. </p> <p>In a nutshell I want to pull all the FullAssets that have a certain callsign, but using a foreach seems clumsy (given that the number of FullAssets that could be contained in said list potentially has no upper limit).</p> http://stackoverflow.com/questions/1824998/how-many-objects-can-linq-used-to-create-per-second 0 How many objects can LINQ used to create per second ? MemoryLeak 2009-12-01T09:24:36Z 2009-12-01T12:27:31Z <p>I used Linq to insert objects into database.But if i used threads to simultanously create 20 object within 1 second, then system will fail to add 20 objects into database.</p> <p>And I found it is not because of the sql server 's limit. so the only possible is Linq, any one have idea ? How can I create 20 records or more in 1 second within 1 second ?</p> http://stackoverflow.com/questions/1825304/return-null-for-firstordefault-on-empty-ienumerableint 3 Return null for FirstOrDefault() on empty IEnumerable<int>? boris callens 2009-12-01T10:28:45Z 2009-12-01T10:39:47Z <p>Say I have following the following snippet (context narrowed down to limit scope of question)</p> <pre><code>int? nullableId = GetNonNullableInts().FirstOrDefault(); </code></pre> <p>Because GetNonNullableInts() returns ints, the FirstOrDefault will default to 0.<br> Is there a way to make the FirstOrDefault on a list of ints return a null value when the list is empty?</p> http://stackoverflow.com/questions/1824934/rewrite-this-foreach-yield-to-a-linq-yield 2 Rewrite this foreach yield to a linq yield? boris callens 2009-12-01T09:09:58Z 2009-12-01T09:12:20Z <p>Say I have the following code (context narrowed down as to keep the question scope limited)</p> <pre><code>public static IEnumerable&lt;Color&gt; GetThemColors(){ var ids = GetThePrimaryIds(); foreach (int id in ids){ yield return GetColorById(id); } ids = GetTheOtherIds(); foreach (int id in ids){ yield return GetOtherColorsById(id); } } </code></pre> <p>I would like to rewrite them to something like this (which off course doesn't compile</p> <pre><code>public static IEnumerable&lt;Color&gt; GetThemColors(){ GetThePrimaryIds().Select(id=&gt;yield return GetColorById(id)); GetTheOtherIds().Select(id=&gt;yield return GetOtherColorsById(id)); } </code></pre> <p>The key point being that in my first snippet I have two foreach enumerators yielding, which I don't know how to do in linq without loosing my lazy-loading features.</p> http://stackoverflow.com/questions/1822750/return-an-empty-collection-when-linq-where-returns-nothing 4 Return an empty collection when Linq where returns nothing ahsteele 2009-11-30T22:10:24Z 2009-12-01T07:26:37Z <p>I am using the below statement with the intent of getting all of the machine objects from the <code>MachineList</code> collection (type IEnumerable) that have a <code>MachineStatus</code> of <em>i</em>. The <code>MachineList</code> collection will not always contain machines with a status of <em>i</em>.</p> <p>At times when no machines have a <code>MachineStatus</code> of <em>i</em> I'd like to return an empty collection. My call to <code>ActiveMachines</code> (which is used first) works but <code>InactiveMachines</code> does not.</p> <pre><code>public IEnumerable&lt;Machine&gt; ActiveMachines { get { return Customer.MachineList .Where(m =&gt; m.MachineStatus == "a"); } } public IEnumerable&lt;Machine&gt; InactiveMachines { get { return Customer.MachineList .Where(m =&gt; m.MachineStatus == "i"); } } </code></pre> <p><strong>Edit</strong></p> <p>Upon further examination it appears that any enumeration of <code>MachineList</code> will cause subsequent enumerations of <code>MachineList</code> to throw an exeception: <code>Object reference not set to an instance of an object</code>.</p> <p>Therefore, it doesn't matter if a call is made to <code>ActiveMachines</code> or <code>InactiveMachines</code> as its an issue with the <code>MachineList</code> collection. This is especially troubling because I can break calls to <code>MachineList</code> simply by enumerating it in a Watch before it is called in code. At its lowest level <code>MachineList</code> implements <code>NHibernate.IQuery</code> being returned as an <code>IEnumerable</code>. What's causing <code>MachineList</code> to lose its contents after an initial enumeration?</p> http://stackoverflow.com/questions/565897/linq-query-for-creating-pivot-table 0 LInQ query for creating PIVOT table Manohar 2009-02-19T15:40:36Z 2009-12-01T07:00:07Z <p>I have three tables table1, table2 and table3</p> <p>Table1 </p> <p>Id Data</p> <p>1 Data1</p> <p>2 Data2</p> <p>3 Data3</p> <p>Table2</p> <p>Id Meta data</p> <p>1 Meta data1</p> <p>2 Meta data2</p> <p>“ "</p> <p>“ "</p> <p>“ "</p> <p>Table 3</p> <p>Id Data ID Meta Data ID Value</p> <p>1 Data1 Metadata1 Value1</p> <p>2 Data1 Metadata2 Value2</p> <p>3 Data2 Metadata1 Value3</p> <p>4 Data2 Metadata2 Value4</p> <p>I want to create a pivot table by joining these tables using LINQ queries</p> <p>My result table should look like this</p> <p>Data Metadata 1 Metadata2 ‘””” and so on……</p> <p>Data1 Value1 Value2<br /> Data2 Value3 Value4</p> <p>What would be the appropriate linq query which may be solution for me to achieve the result?</p> http://stackoverflow.com/questions/994944/how-to-edit-data-in-nested-listview 1 How to Edit data in nested Listview miti737 2009-06-15T07:56:15Z 2009-12-01T00:54:20Z <p>I am using listview to display a list of items and a nested listview to show list of features to each item. Both parent and child listview need to able Insert,Edit and delete operation. It works fine for parent listview. But when I try to edit an child item, The edit button does not take it into Edit mode. Can you please suggest me what I am missing in my code?</p> <pre><code>&lt;asp:ListView ID="lvParent" runat="server" OnItemDataBound="lvParent_ItemDataBound" onitemcanceling="lvParent_ItemCanceling" onitemcommand="lvParent_ItemCommand" DataKeyNames="ItemID" onitemdeleting="lvParent_ItemDeleting" oniteminserting="lvParent_ItemInserting" &gt; &lt;LayoutTemplate&gt; &lt;asp:PlaceHolder ID="itemPlaceholder" runat="server"&gt;&lt;/asp:PlaceHolder&gt; &lt;div align="right"&gt; &lt;asp:Button ID="btnInsert" runat="server" Text="ADD Item" onclick="btnInsert_Click"/&gt; &lt;/div&gt; &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;table runat="server" cellpadding="0" cellspacing="0" border="0" width="100%"&gt; &lt;tr&gt; &lt;td&gt; &lt;div id="dvDetail"&gt; &lt;span &gt;Description&lt;/span&gt; &lt;asp:TextBox ID="txtDescription" runat="server" Text='&lt;%# DataBinder.Eval(Container.DataItem, "Description") %&gt;' TextMode="MultiLine" &gt;&lt;/asp:TextBox&gt; &lt;/div&gt; &lt;div id="dvFeature" &gt; &lt;span&gt;Feature List&lt;/span&gt; &lt;asp:ListView ID="lvChild" runat="server" InsertItemPosition="LastItem" DataKeyNames="FeatureID" OnItemCommand="lvChild_ItemCommand" OnItemCanceling="lvChild_ItemCanceling" OnItemDeleting="lvChild_ItemDeleting" OnItemEditing="lvChild_ItemEditing" OnItemInserting="lvChild_ItemInserting" OnItemUpdating="lvChild_ItemUpdating" DataSource='&lt;%# DataBinder.Eval(Container.DataItem, "FeatureList") %&gt;' &gt; &lt;LayoutTemplate&gt; &lt;ul &gt; &lt;asp:PlaceHolder runat="server" ID="itemPlaceHolder" &gt;&lt;/asp:PlaceHolder&gt; &lt;/ul&gt; &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;li&gt; &lt;span class="dvList"&gt;&lt;%# DataBinder.Eval(Container.DataItem, "FeatureTitle")%&gt;&lt;/span&gt; &lt;div class="dvButton" &gt; &lt;asp:ImageButton ID="btnEdit" runat="server" ImageUrl="/Images/edit_16x16.gif" AlternateText= "Edit" CommandName="Edit" CommandArgument='&lt;%# DataBinder.Eval(Container.DataItem, "FeatureID") %&gt;' Width="12" Height="12" /&gt; &lt;asp:ImageButton ID="btnDelete" runat="server" ImageUrl="/Images/delete_16x16.gif" AlternateText= "Delete" CommandName="Delete" CommandArgument='&lt;%# DataBinder.Eval(Container.DataItem, "FeatureID") %&gt;' Width="12" Height="12" /&gt; &lt;/div&gt; &lt;/li&gt; &lt;/ItemTemplate&gt; &lt;EditItemTemplate&gt; &lt;li&gt; &lt;asp:TextBox ID="txtFeature" Text='&lt;%# DataBinder.Eval(Container.DataItem, "FeatureTitle")%&gt;' runat="server"&gt;&lt;/asp:TextBox&gt; &lt;div class="dvButton"&gt; &lt;asp:ImageButton ID="btnUpdate" runat="server" ImageUrl="/Images/ok_16x16.gif" AlternateText= "Update" CommandName="Update" CommandArgument='&lt;%# DataBinder.Eval(Container.DataItem, "FeatureID") %&gt;' Width="12" Height="12" /&gt; &lt;asp:ImageButton ID="btnCancel" runat="server" ImageUrl="/Images/delete_16x16.gif" AlternateText= "Cancel" CommandName="Cancel" Width="12" Height="12" CausesValidation="false" /&gt; &lt;/div&gt; &lt;/li&gt; &lt;/EditItemTemplate&gt; &lt;InsertItemTemplate&gt; &lt;asp:TextBox ID="txtFeature" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;div class="dvButton"&gt; &lt;asp:ImageButton ID="btnInsert" runat="server" ImageUrl="/Images/ok_16x16.gif" AlternateText= "Insert" CommandName="Insert" Width="12" Height="12" /&gt; &lt;asp:ImageButton ID="btnCancel" runat="server" ImageUrl="/Images/delete_16x16.gif" AlternateText= "Cancel" CommandName="Cancel" Width="12" Height="12" CausesValidation="false" /&gt; &lt;/div&gt; &lt;/InsertItemTemplate&gt; &lt;/asp:ListView&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="right"&gt; &lt;div id="dvButton" &gt; &lt;asp:Button ID="btnSave" runat="server" Text="Save" CommandName="Save" CommandArgument='&lt;%# DataBinder.Eval(Container.DataItem, "ItemID") %&gt;' /&gt; &lt;asp:Button ID="btnDelete" runat="server" Text="Delete" CssClass="Cancel" CommandName="Delete" CommandArgument='&lt;%# DataBinder.Eval(Container.DataItem, "ItemID") %&gt;' /&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/ItemTemplate&gt; &lt;/asp:ListView&gt; </code></pre> <p>Code Behind:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack == false) { BindData(); } } private void BindData() { MyDataContext data = new MyDataContext(); var result = from itm in data.ItemLists where itm.ItemID == iItemID select new { itm.ItemID, itm.Description, FeatureList = itm.Features }; lvParent.DataSource = result; lvParent.DataBind(); } protected void lvChild_ItemEditing(object sender, ListViewEditEventArgs e) { ListView lvChild = sender as ListView; lvChild.EditIndex = e.NewEditIndex; lvChild.DataBind(); } </code></pre> <p>Edit:</p> <pre><code>protected void lvChild_ItemEditing(object sender, ListViewEditEventArgs e) { ListView lvChild = sender as ListView; lvChild.EditIndex = e.NewEditIndex; lvChild.DataBind(); } </code></pre> <p>If I use "lvChild.DataBind()" in 'ItemEditing' event, the total list of child items goes away if I click 'edit'</p> <pre><code>protected void lvChild_ItemEditing(object sender, ListViewEditEventArgs e) { ListView lvChild = sender as ListView; lvChild.EditIndex = e.NewEditIndex; } </code></pre> <p>if I get rid of 'lvChild.Databind' in ItemEditing event, it goes to Edit mode after clicking the 'edit' button twice . And though it shows textbox control of EditItemTemplate, it appears as a blank textbox (does not bind existing value to edit).</p> http://stackoverflow.com/questions/1820857/pulling-the-where-clause-out-of-linq-to-sql 2 Pulling the WHERE clause out of LINQ to SQL Hounshell 2009-11-30T16:29:43Z 2009-11-30T22:57:26Z <p>I'm working with a client who wants to mix LINQ to SQL with their in-house DAL. Ultimately they want to be able to query their layer using typical LINQ syntax. The point where this gets tricky is that they build their queries dynamically. So ultimately what I want is to be able to take a LINQ query, pull it apart and be able to inspect the pieces to pull the correct objects out, but I don't really want to build a piece to translate the 'where' expression into SQL. Is this something I can just generate using Microsoft code? Or is there an easier way to do this?</p> http://stackoverflow.com/questions/1683471/how-to-relate-entities-without-navigation-property-mappings 0 How to relate entities without navigation property mappings Billy Logan 2009-11-05T20:46:03Z 2009-11-30T21:33:57Z <p>Hi,</p> <p>I Have Database that contains 4 tables</p> <pre><code> TABLE TBLCARTITEM (CART_ID, ITEM_ID, PROMOTION_ID, many more cart item fields) TABLE XREFCARTITEMPROMOTION (CART_ID, ITEM_ID, PROMOTION_ID) TABLE TBLPROMOTION (PROMOTION_ID, PROMOTION_TYPE_ID, many more promotion fields) TABLE LKPROMOTIONTYPE (PROMOTION_TYPE_ID, PROMOTION_TYPE_DESCRIPTION) </code></pre> <p>The XREFCARTIEMPROMOTION table is a cross reference table that creates a many-to-many relationship between TBLCARTITEM and TBLPROMOTION.</p> <p>TBLPROMOTION is linked to LKPROMOTIONTYPE by PROMOTION TYPE ID.</p> <p>I am trying to use LINQ to get all of a particular carts items and related promotions. </p> <p>So far i have everything with the exception of the LKPROMOTIONTYPE table.</p> <pre><code>using (WSE db = new WSE()) { var cartItems = db.XREFCARTITEM.Include("TBLPROMOTION") .FirstOrDefault(x =&gt; x.CART_ID == cartId); } </code></pre> <p>This gives me everything for the cart including the promotions tied to each item. However when i go and try to include the LKPROMOTIONTYPE table i get the following run-time error: </p> <pre><code>A specified Include path is not valid. The EntityType 'Model.XREFCARTITEM' does not declare a navigation property with the name 'LKPROMOTIONTYPE'. </code></pre> <p>My question is: Does anyone know of a way to relate LKPROMOTIONTYPE to this cartItems object above?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1689762/using-linq-how-do-i-remove-multiple-records-from-a-cross-reference-table 0 Using linq how do i remove multiple records from a cross reference table Billy Logan 2009-11-06T19:23:13Z 2009-11-30T21:14:11Z <p>Hi, My Database contains 4 tables:</p> <pre><code>TABLE TBLCARTITEM (CART_ID, ITEM_ID, PROMOTION_ID, many more cart item fields) TABLE XREFCARTITEMPROMOTION (CART_ID, ITEM_ID, PROMOTION_ID) TABLE TBLPROMOTION (PROMOTION_ID, PROMOTION_TYPE_ID, many more promotion fields) TABLE TBLITEM (ITEM_ID, many more item fields) </code></pre> <p>The XREFCARTIEMPROMOTION table is a cross reference table that creates a many-to-many relationship between TBLCARTITEM and TBLPROMOTION. TBLITEM is related to both TBLCARTITEM and XREFCARTITEMPROMOTION.</p> <p>I am trying to use linq to remove multiple records from the XREFCARTIEMPROMOTION table specified above. Right now i can only remove a single record. </p> <p>My script looks like so:</p> <pre><code> using (WSE webStoreContext = new WSE()){ XREFCARTITEM dbItem = WebStoreDelegates.selectCartItems.Invoke(webStoreContext).ByItemID(itemId).ByCartID(cartId).ToList().SingleOrDefault(); if (dbItem.TBLITEM.TBLPROMOTION != null) dbItem.TBLPROMOTION.Remove(WebStoreDelegates.selectPromotions.Invoke(webStoreContext).ByID(dbItem.TBLITEM.TBLPROMOTION.PROMOTION_ID).ToList().SingleOrDefault()); } </code></pre> <p>the selectCartItems Delegate:</p> <pre><code>public static Func&lt;WSE, IQueryable&lt;XREFCARTITEM&gt;&gt; selectCartItems = CompiledQuery.Compile&lt;WSE, IQueryable&lt;XREFCARTITEM&gt;&gt;( (cart) =&gt; from c in cart.XREFCARTITEM.Include("TBLITEM").Include("TBLPROMOTION") select c); </code></pre> <p>the selectPromotions Delegate:</p> <pre><code>public static Func&lt;WSE, IQueryable&lt;TBLPROMOTION&gt;&gt; selectPromotions = CompiledQuery.Compile&lt;WSE, IQueryable&lt;TBLPROMOTION&gt;&gt;( (cart) =&gt; from c in cart.TBLPROMOTION select c); </code></pre> <p>Filters byItemID and byCartID will bring back all instances of this item in this cart. Filter byID just brings back a single promotion.</p> <p>My removal process is only removing a single record out of the XREFCARTITEMPROMOTION table. I would like to remove all the filtered records from my dbitem's XREFCARTITEMPROMOTION table at this point.</p> <p>I have tried setting the entity key to null, but this doesn't seem to make a difference. <code>dbItem.TBLITEM.TBLPROMOTIONReference.EntityKey = null;</code></p> <p>My question is how do i remove multiple records from a cross reference table given the code above?</p> <p>Thanks in advance.</p>