User Jason Heine - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T07:03:40Z http://stackoverflow.com/feeds/user/76891 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1821955/linq-dynamic-where-not-adding-clause 2 LINQ Dynamic Where - Not adding clause Jason Heine 2009-11-30T19:41:35Z 2009-11-30T20:02:53Z <p>Hello,</p> <p>I have the following code:</p> <pre><code>public OTestTable GetTestCode(Func&lt;TestTable, bool&gt; whereClause) { return CoreContext.TestTables.Where(whereClause).Select(TestTableMap.DataToObject).FirstOrDefault(); } </code></pre> <p>CoreContext is my data context (which is initialized in a base class)</p> <p>My TestTableMap is as follows:</p> <pre><code>public class TestTableMap { public static readonly Func&lt;TestTable, OTestTable&gt; DataToObject = mapper =&gt; new OTestTable { Code = mapper.mycode }; } </code></pre> <p>Then in my business method i have the following:</p> <pre><code>public OTestTable GetTestCode(string code) { return QueryEngine.GetTestCode(id =&gt; id.mycode == code); } </code></pre> <p>From my main program, i am calling GetTestCode with a string value.</p> <p>When I watch SQL profiler, I get the following:</p> <pre><code>SELECT [t0].[mycode] FROM [dbo].[TestTable] AS [t0] </code></pre> <p>It does not have the where clause appended to the SQL query. If i add the where clause to the LINQ as var query = from c in DataContext.TestTable where c.mycode == '' select c;</p> <p>It will add the where clause.</p> <p>However, when I run my code, it will return the correct record, but it seems like I am pulling back all records from the database and filtering in my code (which should not happen).</p> <p>Any thoughts with what I am doing wrong?</p> <p>Thanks</p> http://stackoverflow.com/questions/1455698/c-cosine-problem 1 C++ Cosine Problem Jason Heine 2009-09-21T17:20:07Z 2009-09-21T17:28:52Z <p>Hello,</p> <p>I have the following code using C++:</p> <pre><code>double value = .3; double result = cos(value); </code></pre> <p>When I look at the values in the locals window for "value" it shows 0.2999999999</p> <p>Then, when I get the value of "result" I get: 0.95533648912560598</p> <p>However, when I run cos(.3) on the computers calculator I get: .9999862922474</p> <p>So clearly there is something that I am doing wrong.</p> <p>Any thoughts on what might be causing the difference in results?</p> <p>I am running Win XP on an Intel processor.</p> <p>Thanks</p> http://stackoverflow.com/questions/1364986/sql-image-datatype-c-display-output 1 SQL Image DataType - C# Display Output Jason Heine 2009-09-01T22:34:26Z 2009-09-02T00:31:34Z <p>I have an image data type in my table. When I query using SQL Server Management Studio, I get the following in my results window, both grid and text. </p> <p>0x255044462D312E320D0A0D0A332030206F[Truncated for Length]</p> <p>I am attempting to replicate this in a little c# program. </p> <p>However, when I use either SqlCommand or LINQ I get the output: JVBERi0xLjINCg0KMyAwIG9iag0KPDwNCi9FIDIxODgyDQovSCBbIDExNTAgMTUxIF0NCi9MIDIyM[TRUNCATED]</p> <p>Any thoughts to what I need to do to get the 0x25... output to display? I have tried doing byte[] conversions and Encoding, but can't seem to find the right one.</p> <p>If I am not clear, please let me know.</p> <p>Edit: I am not trying to display the image, just the 0x25...</p> <p>Thoughts?</p> http://stackoverflow.com/questions/1274549/c-spin-image-resources 0 C++ Spin Image Resources Jason Heine 2009-08-13T21:01:02Z 2009-08-13T22:21:07Z <p>Hello,</p> <p>Does anyone know of a good resource that will show me how to load an image with C++ and spin it?</p> <p>What I mean by spin is to do an actual animation of the image rotating and not physically rotating the image and saving it.</p> <p>If I am not clear on what I am asking, please ask for clarification before downvoting.</p> <p>Thanks</p> http://stackoverflow.com/questions/768905/namespace-and-sub-namespaces 1 Namespace and Sub Namespaces Jason Heine 2009-04-20T15:59:38Z 2009-07-27T13:03:22Z <p>Is there a way to use a namespace and then have it automatically use all sub namespaces?</p> <p>Example:</p> <pre><code>namespace Root.Account { //code goes here } namespace Root.Orders { //code goes here } //New File: using Root; </code></pre> <p>In order for me to use the code in Root.Account, I would need to add using Root.Account to my code.</p> <p>I would like to be able to just say using Root and have it pick up any sub namespace classes for use.</p> <p>If this makes sense, is this possible?</p> <p>Thanks</p> http://stackoverflow.com/questions/1104420/thread-safe-control-crashing-vs-2008 0 Thread Safe Control - Crashing VS 2008 Jason Heine 2009-07-09T14:57:37Z 2009-07-09T16:23:12Z <p>Hello,</p> <p>I am working on creating a thread safe control for my windows forms application.</p> <p>I understand I can set the text on a control thread safe by using the following code:</p> <pre><code>private delegate void SetTextD(Control control, string value); private static void SetText(Control control, string value) { if(control.InvokeRequired) { control.Invoke(new SetTextD(SetText), new object[] {control, value}); } else { control.Text = value; } } </code></pre> <p>Then in my form code i can call:</p> <pre><code>SetText(lblStatus, "Updating..."); </code></pre> <p>My goal is to create a custom control, which inherits Label. Then inside this class, on the Text property I can just call:</p> <p>lblStatus.Text = "Updating..." </p> <p>Then it will automatically do the proper thread safe code.</p> <p>Here is the code that I have in my class:</p> <pre><code>public class ThreadSafeLabel : Label { private delegate string GetTextD(); private delegate void SetTextD(string value); private string GetText() { if (InvokeRequired) { return (string)Invoke(new GetTextD(GetText)); } return Text; } private void SetText(string value) { if(InvokeRequired) { Invoke(new SetTextD(SetText), new object[] {value}); } else { Text = value; } } public override string Text { get { return GetText(); } set { SetText(value); } } } </code></pre> <p>Now, when I attempt to add this control to my form, it crashes VS 2008. I was thinking that maybe it had to do with setting the initial text property when you add it to the form, but not sure.</p> <p>Any thoughts on what I might be doing wrong or what I might be missing?</p> <p>If something is not clear, please ask.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1071579/user-control-click-windows-forms 4 User Control Click - Windows Forms Jason Heine 2009-07-01T21:59:13Z 2009-07-01T23:26:35Z <p>Hello,</p> <p>I have a custom user control on my windows forms. This control has a few labels on it.</p> <p>I will be dynamically displaying an array of these controls on my form which will contain different bits of data.</p> <p>What I am trying to do is know which user control was selected when I click on it. </p> <p>This works when I click on an empty space on the user control, however, if I click on any label on the user control it will not recognize the user control click.</p> <p>Any thoughts on how I can do a full user control click, even if a label on the control is being clicked?</p> <p>If this question is not clear, or you need more info, please leave a comment.</p> <p>I am doing this in c#.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers 3 Random Number Between 2 Double Numbers Jason Heine 2009-06-30T17:17:54Z 2009-06-30T17:29:46Z <p>It is possible to generate a random number between 2 doubles?</p> <p>Example:</p> <pre><code>public double GetRandomeNumber(double minimum, double maximum) { return Random.NextDouble(minimum, maximum) } </code></pre> <p>Then I call it with the following:</p> <pre><code>double result = GetRandomNumber(1.23, 5.34); </code></pre> <p>Any thoughts would be appreciated.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1061334/possible-loss-of-fraction 2 Possible Loss of Fraction Jason Heine 2009-06-30T01:21:50Z 2009-06-30T01:26:49Z <p>Forgive me if this is a naïve question, however I am at a loss today.</p> <p>I have a simple division calculation such as follows:</p> <pre><code>double returnValue = (myObject.Value / 10); </code></pre> <p>Value is an int in the object.</p> <p>I am getting a message that says Possible Loss of Fraction. However, when I change the double to an int, the message goes away. </p> <p>Any thoughts on why this would happen?</p> http://stackoverflow.com/questions/1033710/remove-invalid-data-from-varchar-column/1033751#1033751 1 Answer by Jason Heine for Remove Invalid data from VarChar column Jason Heine 2009-06-23T16:36:58Z 2009-06-23T16:36:58Z <p>this should do it for you if you are running MS SQL:</p> <pre><code>update mytable set new_column = old_column where isnumeric(old_column) = 1 </code></pre> http://stackoverflow.com/questions/1003397/how-do-i-browse-the-local-directorys-files-without-using-openfiledialog-c/1003436#1003436 1 Answer by Jason Heine for How do I browse the local directory's files without using OpenFileDialog? (C#) Jason Heine 2009-06-16T19:13:52Z 2009-06-16T19:13:52Z <p>Maybe something like this is what you are looking for:</p> <p>It uses the tree view.</p> <p><a href="http://www.codeproject.com/KB/cs/TreeViewFileExplorer.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/TreeViewFileExplorer.aspx</a></p> http://stackoverflow.com/questions/982677/visual-studio-command-to-collapse-all-sections-of-code/982714#982714 1 Answer by Jason Heine for Visual Studio - Command to collapse all sections of code? Jason Heine 2009-06-11T18:09:17Z 2009-06-11T18:09:17Z <p>Are you refering to the toggle outlining?</p> <p>You can do Control-M then Control-L for toggle all outlining</p> http://stackoverflow.com/questions/982363/cant-convert-unicode-data-into-xml-column-in-sql-server-2008/982419#982419 1 Answer by Jason Heine for Can't Convert unicode Data into XML column in sql server 2008 Jason Heine 2009-06-11T17:17:16Z 2009-06-11T17:17:16Z <p>I think you should be using UTF-8 encoding. </p> <p>You can find out more about the encoding here:</p> <p><a href="http://www.ibm.com/developerworks/xml/library/x-utf8/" rel="nofollow">http://www.ibm.com/developerworks/xml/library/x-utf8/</a></p> <p>Also, you will find some more information here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms131375.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms131375.aspx</a></p> http://stackoverflow.com/questions/982170/determine-if-site-is-running-https/982175#982175 6 Answer by Jason Heine for Determine if site is running HTTPS Jason Heine 2009-06-11T16:31:18Z 2009-06-11T16:31:18Z <p>You can use:</p> <pre><code>HttpContext.Current.Request.IsSecureConnection </code></pre> http://stackoverflow.com/questions/981632/lambda-expression-from-c-to-vb-net/981661#981661 4 Answer by Jason Heine for Lambda expression from C# to VB.Net Jason Heine 2009-06-11T15:01:57Z 2009-06-11T15:01:57Z <p>It should be something like this:</p> <pre><code>Dim s As String = blockRenderer.Capture(Function() RenderPartialExtensions.RenderPartial (h, userControl, viewData)) </code></pre> http://stackoverflow.com/questions/980904/convert-rgb-method/980925#980925 3 Answer by Jason Heine for Convert RGB method? Jason Heine 2009-06-11T13:00:06Z 2009-06-11T13:01:17Z <p>I think this is what you might be looking for:</p> <pre><code>int blue = Color.Blue.ToArgb(); int yellow = Color.Yellow.ToArgb(); blue = (blue + yellow)/2; Color Blue = Color.FromArgb(blue); </code></pre> http://stackoverflow.com/questions/975531/how-to-get-the-monthname-in-c/975540#975540 10 Answer by Jason Heine for How to get the MonthName in c#? Jason Heine 2009-06-10T13:21:20Z 2009-06-10T13:21:20Z <p>You can use the CultureInfo to get the month name. You can even get the short month name as well as other fun things. </p> <p>I would suggestion you put these into extension methods, which will allow you to write less code later. However you can implement however you like.</p> <p>Here is an example of how to do it using extension methods:</p> <pre><code>using System; using System.Globalization; class Program { static void Main() { Console.WriteLine(DateTime.Now.ToMonthName()); Console.WriteLine(DateTime.Now.ToShortMonthName()); Console.Read(); } } static class DateTimeExtensions { public static string ToMonthName(this DateTime dateTime) { return CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(dateTime.Month); } public static string ToShortMonthName(this DateTime dateTime) { return CultureInfo.CurrentCulture.DateTimeFormat.GetAbbreviatedMonthName(dateTime.Month); } } </code></pre> <p>Hope this helps!</p> http://stackoverflow.com/questions/974254/struggling-with-vb-net-lambdas/975261#975261 5 Answer by Jason Heine for Struggling with VB .net Lambdas Jason Heine 2009-06-10T12:25:58Z 2009-06-10T12:25:58Z <p>After looking over your code and scratching my head, I found a solution that works. Now, why this works over what you have, I am not clear. Maybe this will at least help you in the right direction. The key difference is I have a method that sets the value to true/false. Everything else is the same.</p> <p>Here is my entire web project code:</p> <pre><code>Partial Public Class _Default Inherits System.Web.UI.Page Dim databoundCalled As Boolean = False Dim dropdownlist As New DropDownList() Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Response.Write(databoundCalled) Bind() Response.Write(databoundCalled) End Sub Sub Bind() AddHandler dropdownlist.DataBound, Function(o, e) (SetValue(True)) dropdownlist.DataSource = New String() {"one", "two"} dropdownlist.DataBind() End Sub Function SetValue(ByVal value As Boolean) As Boolean databoundCalled = value Return value End Function End Class </code></pre> <p>I hope this helps!</p> http://stackoverflow.com/questions/952264/serialization-and-deserialization-into-an-xml-file-c/971735#971735 0 Answer by Jason Heine for Serialization and Deserialization into an XML file, C# Jason Heine 2009-06-09T18:29:35Z 2009-06-09T18:29:35Z <p>This question is exactly like this one. I also have a posted answer which will work for you as well:</p> <p><a href="http://stackoverflow.com/questions/970971/how-to-serialize/971115#971115">http://stackoverflow.com/questions/970971/how-to-serialize/971115#971115</a></p> http://stackoverflow.com/questions/970971/how-to-serialize/971115#971115 6 Answer by Jason Heine for How to serialize? Jason Heine 2009-06-09T16:23:13Z 2009-06-09T16:23:13Z <p>You can use the XmlSerializer:</p> <pre><code>using System.Xml.Serialization; static void Main() { // Get all files in Documents List&lt;string&gt; dirs = FileHelper.GetFilesRecursive(@"S:\\bob.smith\\"); XmlSerializer x = new XmlSerializer(dirs.GetType()); x.Serialize(Console.Out, dirs); Console.Read(); } </code></pre> http://stackoverflow.com/questions/957212/border-gone-from-table/957257#957257 5 Answer by Jason Heine for Border gone from table? Jason Heine 2009-06-05T18:04:50Z 2009-06-05T18:04:50Z <p>If you take your code and put it directly in a blank html page, does it work? I am wondering if there is something outside causing it, perhapes in a different CSS (just guessing).</p> <p>I pulled this open in FF, Safari, Opera, Chrome, IE6-7 and 8 and could not replicate it.</p> <p>Even with/without out the border-collapse i get the same results.</p> http://stackoverflow.com/questions/956996/best-practices-css-stylesheet-formatting/957030#957030 4 Answer by Jason Heine for Best Practices - CSS Stylesheet Formatting Jason Heine 2009-06-05T17:11:58Z 2009-06-05T17:11:58Z <p>My site has a global.css which imports the other CSS in the order that they need to cascade.</p> <p>example:</p> <pre><code>Global.cs file: @import url('Directory/MainLayout.css'); @import url('Directory/Links.css') @import url('Directory/Tables.css') </code></pre> <p>Doing it like this will help you organize your CSS.</p> http://stackoverflow.com/questions/956977/asp-messagebox/956984#956984 0 Answer by Jason Heine for ASP Messagebox Jason Heine 2009-06-05T17:01:25Z 2009-06-05T17:01:25Z <p>Here is one way of doing it:</p> <pre><code>&lt;% message = "This is my message" Response.Write("&lt;script language=VBScript&gt;MsgBox """ + message + """&lt;/script&gt;") %&gt; </code></pre> http://stackoverflow.com/questions/950726/dynamic-sort-criteria-for-generic-list 2 Dynamic Sort Criteria for Generic List Jason Heine 2009-06-04T13:49:58Z 2009-06-04T17:17:34Z <p>The purpose of this is to avoid writing a ton of if() statements.</p> <p>Here is my current code:</p> <pre><code>public override List&lt;oAccountSearchResults&gt; SearchForAccounts(oAccountSearchCriteria searchOptions) { List&lt;oAccountSearchResults&gt; results = Service.SearchForAccounts(searchOptions); results.Sort((a1, a2) =&gt; a2.AccountNumber.CompareTo(a1.AccountNumber)); return results; } </code></pre> <p>What I would like to do is provide a parameter which tells me which field to sort on. Then dynamically update my sort criteria without having a bunch of if() statements such as this:</p> <pre><code>public override List&lt;oAccountSearchResults&gt; SearchForAccounts(oAccountSearchCriteria searchOptions, string sortCriteria) { List&lt;oAccountSearchResults&gt; results = Service.SearchForAccounts(searchOptions); if (sortCriteria == "AccountNumber") { results.Sort((a1, a2) =&gt; a2.AccountNumber.CompareTo(a1.AccountNumber)); } else if (sortCriteria == "FirstName") { results.Sort((a1, a2) =&gt; a2.FirstName.CompareTo(a1.FirstName)); } return results; } </code></pre> <p>I would like to do this without having about 30 if() statements for all the sortable criteria that will be available. </p> <p>Any and all help will be appreciated.</p> <p><strong>EDIT WITH SOLUTION:</strong></p> <p>Thank you all for your responses.</p> <p>David, your approached worked but I think that Richard's answer works a bit better.</p> <p>Here is the ultimate solution that I came up with. I used David's framework for the example and Richards implementation:</p> <pre><code>using System; using System.Collections.Generic; namespace SortTest { class Program { static void Main(string[] args) { var results1 = Search(oObject =&gt; oObject.Value1); foreach (oObject o in results1) { Console.WriteLine(o.Value1 + ", " + o.Value2); } Console.WriteLine(Environment.NewLine); var results2 = Search(oObject =&gt; oObject.Value2); foreach (oObject o in results2) { Console.WriteLine(o.Value1 + ", " + o.Value2); } Console.ReadLine(); } public static List&lt;oObject&gt; Search&lt;T&gt;(Func&lt;oObject, T&gt; keyExtract) where T: IComparable { var results = new List&lt;oObject&gt; { new oObject {Value1 = "A 1", Value2 = "B 2"}, new oObject {Value1 = "B 1", Value2 = "A 2"} }; results.Sort((a, b) =&gt; keyExtract(a).CompareTo(keyExtract(b))); return results; } } class oObject { public string Value1 { get; set; } public string Value2 { get; set; } } } </code></pre> http://stackoverflow.com/questions/944833/specified-initialization-vector-iv-does-not-match-the-block-size-for-this-algor/944845#944845 7 Answer by Jason Heine for Specified initialization vector (IV) does not match the block size for this algorithm. Jason Heine 2009-06-03T13:45:56Z 2009-06-03T13:45:56Z <p>The problem is your initialization vector size needs to be 16 bytes.</p> <p>Your initial vector size is 14 bytes.</p> <p>You will need to increase the size of your initial vector by 2 bytes and your code will work.</p> <p>Example:</p> <pre><code>string initVector = "HR$2pIjHR$2pIj12"; </code></pre> <p>You will then get the output with your current code and the example IV (initialization vector) size provided:</p> <p>hAC8hMf3N5Zb/DZhFKi6Sg==</p> <p>This article provides a good explanation on what the initialization vector is.</p> <p><a href="http://en.wikipedia.org/wiki/Initialization%5Fvector" rel="nofollow">http://en.wikipedia.org/wiki/Initialization_vector</a></p> http://stackoverflow.com/questions/922273/how-to-overcome-openxml-8000-charachters-limit/922342#922342 3 Answer by Jason Heine for How to overcome OpenXML 8000 charachters limit Jason Heine 2009-05-28T17:59:50Z 2009-05-28T17:59:50Z <p>You should be able to use varchar(max) (SQL 2005 and higher)</p> <pre><code>DECLARE @idoc int DECLARE @doc varchar(max) SET @doc = ' &lt;myxml&gt; &lt;node nodeid="1" nodevalue="value 1"&gt; &lt;/node&gt; &lt;/myxml&gt;' EXEC sp_xml_preparedocument @idoc OUTPUT, @doc SELECT * FROM OPENXML (@idoc, '/myxml/node',1) WITH ( nodeid varchar(10), nodevalue varchar(20) ) </code></pre> http://stackoverflow.com/questions/921332/what-is-the-order-of-execution-in-nunit/921339#921339 5 Answer by Jason Heine for What is the order of execution in NUnit? Jason Heine 2009-05-28T15:06:33Z 2009-05-28T15:06:33Z <p>Using NUnit (not sure about others) you have the following order of executions:</p> <p>TestFixtureSetup</p> <p>Setup</p> <p>Test</p> <p>TearDown</p> <p>Setup</p> <p>Test</p> <p>TearDown</p> <p>TestFixtureTearDown</p> <p>Every time you run your tests it will always execute in that order. </p> <p>If you take a look at the following code, you can see an exact replica of what I am talking about. You can even copy and paste this code and it should work (using NUnit, not sure if it will work with others).</p> <p>If you run this in debug mode, and put a break point on each of the methods, you can see the order of execution while you debug.</p> <pre><code>using NUnit.Framework; namespace Tester { [TestFixture] public class Tester { public string RandomVariable = string.Empty; [TestFixtureSetUp] public void TestFixtureSetup() { //This gets executed first before anything else RandomVariable = "This was set in TestFixtureSetup"; } [SetUp] public void Setup() { //This gets called before every test RandomVariable = "This was set in Setup"; } [Test] public void MyTest1() { //This is your test... RandomVariable = "This was set in Test 1"; } [Test] public void MyTest2() { //This is your test... RandomVariable = "This was set in Test 2"; } [TearDown] public void TestTearDown() { //This gets executed after your test gets executed. //Used to dispose of objects and such if needed RandomVariable = "This was set in TearDown"; } [TestFixtureTearDown] public void TestFixtureTearDown() { //Executes Last after all tests have run. RandomVariable = "This was set in TestFixtureTearDown"; } } } </code></pre> http://stackoverflow.com/questions/916224/decimal-value-check-if-zero/916232#916232 11 Answer by Jason Heine for Decimal Value Check if Zero Jason Heine 2009-05-27T14:57:23Z 2009-05-27T15:13:03Z <p>You can do a conditional if statement like this. This is the same as IIF in VB.net</p> <pre><code>return dividend / ((divisor == 0) ? 1 : divisor); </code></pre> <p>Make sure you wrap your second half with () or you will get a divide error.</p> http://stackoverflow.com/questions/911611/where-can-i-find-a-good-net-pdf-library/911628#911628 1 Answer by Jason Heine for Where can I find a good .NET PDF library? Jason Heine 2009-05-26T16:40:59Z 2009-05-26T16:40:59Z <p>I have used <a href="http://www.websupergoo.com/abcpdf-1.htm" rel="nofollow">http://www.websupergoo.com/abcpdf-1.htm</a> and it works really well for me. You can add images and everything. I am using it where I take XML and XSLT as a template, pass in the transform (the XSLT converts to HTML) and the PDF generator will generate my page properly. </p> <p>Yes, the component has a cost, but I find it worth it some times to pay a small cost then spending hours and hours trying to get something else to work.</p> http://stackoverflow.com/questions/898363/simulating-cross-context-joins-linq-c/898539#898539 4 Answer by Jason Heine for Simulating Cross Context Joins--LINQ/C# Jason Heine 2009-05-22T15:40:05Z 2009-05-23T22:31:11Z <p>Maybe something like this can get you started in the right direction. I made a mock database with similar columns based on your column names and got some results.</p> <pre><code> class Program { static AccountContextDataContext aContext = new AccountContextDataContext(@"Data Source=;Initial Catalog=;Integrated Security=True"); static LoanContextDataContext lContext = new LoanContextDataContext(@"Data Source=;Initial Catalog=;Integrated Security=True"); static void Main() { var query = from a in aContext.ACCOUNTs join app in aContext.APPLICATIONs on a.GUID_ACCOUNT_ID equals app.GUID_ACCOUNT where app.GUID_APPLICATION.ToString() == "24551D72-D4C2-428B-84BA-5837A25D8CF6" select GetLoans(app.GUID_APPLICATION); IEnumerable&lt;LOAN&gt; loan = query.First(); foreach (LOAN enumerable in loan) { Console.WriteLine(enumerable.GUID_LOAN); } Console.ReadLine(); } private static IEnumerable&lt;LOAN&gt; GetLoans(Guid applicationGuid) { return (from l in lContext.LOANs where l.GUID_APPLICATION == applicationGuid select l).AsQueryable(); } } </code></pre> <p>Hope this helps!</p> http://stackoverflow.com/questions/1821955/linq-dynamic-where-not-adding-clause/1822040#1822040 Comment by Jason Heine on LINQ Dynamic Where - Not adding clause Jason Heine 2009-11-30T20:02:52Z 2009-11-30T20:02:52Z that was it!! I totally forgot about using the Expression!! Thanks a bunch! http://stackoverflow.com/questions/1455698/c-cosine-problem/1455710#1455710 Comment by Jason Heine on C++ Cosine Problem Jason Heine 2009-09-21T17:25:34Z 2009-09-21T17:25:34Z Thank you for this information! http://stackoverflow.com/questions/1455698/c-cosine-problem/1455712#1455712 Comment by Jason Heine on C++ Cosine Problem Jason Heine 2009-09-21T17:25:03Z 2009-09-21T17:25:03Z AHH HA!! I feel like a dork now. Thank you so much!! This is my &quot;dur&quot; moment for today. http://stackoverflow.com/questions/1364986/sql-image-datatype-c-display-output/1365016#1365016 Comment by Jason Heine on SQL Image DataType - C# Display Output Jason Heine 2009-09-01T22:48:12Z 2009-09-01T22:48:12Z Thank you also for your response. this program will not go into production, so i don't have a worry for performance. I appreciate your responses! http://stackoverflow.com/questions/1364986/sql-image-datatype-c-display-output/1365020#1365020 Comment by Jason Heine on SQL Image DataType - C# Display Output Jason Heine 2009-09-01T22:47:40Z 2009-09-01T22:47:40Z Ahh, this did it. thank you so much http://stackoverflow.com/questions/1274549/c-spin-image-resources/1274882#1274882 Comment by Jason Heine on C++ Spin Image Resources Jason Heine 2009-08-27T14:49:47Z 2009-08-27T14:49:47Z SDL worked perfect. Thanks! http://stackoverflow.com/questions/1274549/c-spin-image-resources/1274684#1274684 Comment by Jason Heine on C++ Spin Image Resources Jason Heine 2009-08-13T21:38:10Z 2009-08-13T21:38:10Z okay thanks, i will check out openGL and go from there. http://stackoverflow.com/questions/1274549/c-spin-image-resources Comment by Jason Heine on C++ Spin Image Resources Jason Heine 2009-08-13T21:12:29Z 2009-08-13T21:12:29Z I am using the windows platform. I know nothing of Mac or Linux. thanks http://stackoverflow.com/questions/1104420/thread-safe-control-crashing-vs-2008 Comment by Jason Heine on Thread Safe Control - Crashing VS 2008 Jason Heine 2009-07-09T18:37:02Z 2009-07-09T18:37:02Z @tanscius sorry but I agree with Slaks, his answer was clearer. It is not always the code that gives the correct answer but the why. - Thanks http://stackoverflow.com/questions/1104420/thread-safe-control-crashing-vs-2008/1104559#1104559 Comment by Jason Heine on Thread Safe Control - Crashing VS 2008 Jason Heine 2009-07-09T15:34:32Z 2009-07-09T15:34:32Z This is what it was. Thank you for the info. http://stackoverflow.com/questions/1104420/thread-safe-control-crashing-vs-2008 Comment by Jason Heine on Thread Safe Control - Crashing VS 2008 Jason Heine 2009-07-09T15:33:59Z 2009-07-09T15:33:59Z .NET Runtime version 2.0.50727.3053 - Fatal Execution Engine Error (7A2E0F92) (0) http://stackoverflow.com/questions/1071579/user-control-click-windows-forms/1071590#1071590 Comment by Jason Heine on User Control Click - Windows Forms Jason Heine 2009-07-02T00:18:59Z 2009-07-02T00:18:59Z awesome! this totally helped. Thanks a bunch! http://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers/1064907#1064907 Comment by Jason Heine on Random Number Between 2 Double Numbers Jason Heine 2009-06-30T17:35:01Z 2009-06-30T17:35:01Z perfect! this is what I was looking for. Thank you so much http://stackoverflow.com/questions/1061334/possible-loss-of-fraction Comment by Jason Heine on Possible Loss of Fraction Jason Heine 2009-06-30T01:30:28Z 2009-06-30T01:30:28Z Thank you all for the great responses. It makes sense now that you lose the decimal point when dividing 2 int values. http://stackoverflow.com/questions/983095/determine-pages-controls-code-being-used-in-solution Comment by Jason Heine on Determine Pages, Controls, Code being used in Solution Jason Heine 2009-06-11T21:32:56Z 2009-06-11T21:32:56Z I will even accept if there is really not a way to do this. I am just searching hoping for a solution :)