User Ryan Riley - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:53:56Z http://stackoverflow.com/feeds/user/29439 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1162878/argotic-syndication-framework-v-system-servicemodel-syndication 0 Argotic Syndication Framework v. System.ServiceModel.Syndication Ryan Riley 2009-07-22T03:06:06Z 2009-08-16T09:08:08Z <p>I'm investigating the <a href="http://argotic.codeplex.com/" rel="nofollow">Argotic Syndication Framework</a>, and I'm pretty impressed so far. However, a lot of the current implementation--at least for RSS and Atom--<a href="http://jaysmith.us/category/WCF-Syndication.aspx" rel="nofollow">seem pretty comparable</a> to <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.aspx" rel="nofollow">System.ServiceModel.Syndication</a>. Does anyone have any opinions as to one over the other?</p> http://stackoverflow.com/questions/731763/should-c-methods-that-can-be-static-be-static/1229826#1229826 0 Answer by Ryan Riley for Should C# methods that *can* be static be static? Ryan Riley 2009-08-04T20:41:19Z 2009-08-04T20:41:19Z <p>I look at it generally from a functional perspective of pure functions. Does it need to be an instance method? If not, you may benefit from forcing the user to pass in the variables and not mangling the current instance's state. (Well, you could still mangle state, but the point is to, by design, not do so.) I generally design instance methods as public members and do my best to make private members static. If necessary (you can then more easily extract them into other classes later.</p> http://stackoverflow.com/questions/1032923/argotic-syndication-framework/1162867#1162867 0 Answer by Ryan Riley for Argotic Syndication Framework Ryan Riley 2009-07-22T03:00:01Z 2009-07-22T03:14:22Z <p>The many links on the <a href="http://argotic.codeplex.com/" rel="nofollow">CodePlex wiki</a> lead to a number of tutorials. Also, check out <a href="http://www.dimecasts.net/casts/castdetails/19" rel="nofollow">DimeCasts.net</a>. Derik Whittaker also has a simple sample <a href="http://devlicio.us/blogs/derik%5Fwhittaker/archive/2008/06/10/generate-your-own-rss-feed-with-argotic.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/481728/how-to-add-serialized-linq-to-sql-entities-to-a-word-2007-document 1 How to Add Serialized LINQ to SQL Entities to a Word 2007 Document Ryan Riley 2009-01-26T22:57:09Z 2009-05-02T02:13:12Z <p>I built a template-based document generator using the <a href="http://msdn.microsoft.com/en-us/library/bb448854.aspx" rel="nofollow">Open XML SDK (1.0)</a>, the <a href="http://www.codeplex.com/dbe" rel="nofollow">Word 2007 Content Control Toolkit</a> and LINQ to SQL (using the CodeSmith PLINQO templates). To do this, I serialized the LINQ to SQL entities to XML by retrieving the entity using DataLoadOptions specified in the source code.</p> <p>This works great, except that to initially populate the XML in my template, I currently have to copy and paste the XML from the Immediate window in VS2008 into the Content Control Toolkit, and it still has all the data from the current entity.</p> <p>I'm looking for two solutions: 1) Is this a good way to build a document generator with Word 2007? 1) How can I generate just the XML I need without the data? I've thought of creating an XSD and then creating an empty XML document, but wasn't sure how to do that programatically so that a business user can get the XML for the template. (That's not a requirement, just a nice-to-have.)</p> <p>Thanks for your feedback,</p> <p>Ryan</p> http://stackoverflow.com/questions/491900/t4-vs-codedom-vs-oslo 3 T4 vs CodeDom vs Oslo Ryan Riley 2009-01-29T14:56:23Z 2009-04-25T13:20:36Z <p>In an application scaffolding project on which I'm working, I'm trying to decide whether to use <a href="http://msdn.microsoft.com/en-us/oslo/default.aspx" rel="nofollow">Oslo</a>, <a href="http://www.olegsych.com/2007/12/text-template-transformation-toolkit/" rel="nofollow">T4</a> or <a href="http://msdn.microsoft.com/en-us/library/y2k85ax6.aspx" rel="nofollow">CodeDom</a> for generating code. Our goals are to keep dependencies to a minimum and drive code generation for a domain driven design from user stories. The first step will be to create the tests from the user stories, but we want the domain experts to be able to write their stories in a variety of different media (e.g. custom app, Word, etc.) and still generate the tests from the stories.</p> <p>What I know so far:</p> <ol> <li>CodeDom requires .NET but can only output .NET class files (e.g. .cs, .vb). Level of difficulty is fairly high.</li> <li>T4 requires CodeDom and VS Standard+. Level of difficulty is fairly reasonable, especially with the <a href="http://www.codeplex.com/t4toolbox" rel="nofollow">T4 Toolbox</a>.</li> <li>Oslo is very new. I have no idea of the dependencies, but I imagine you must be on at least .NET 3.5. I'm also not certain as to the code generation abilities or the complexity for adding new grammars. However, domain experts could probably write user stories in Intellipad quite easily. Also not sure about ease of converting stories in Word to an MGrammar.</li> </ol> <p>What are your thoughts, experiences, etc. with any of the above tools. We want to stick with Microsoft or open source tools.</p> http://stackoverflow.com/questions/698651/nhibernate-map-same-class-to-multiple-tables-depending-on-parent/772536#772536 1 Answer by Ryan Riley for NHibernate: Map same class to multiple tables depending on parent Ryan Riley 2009-04-21T13:16:47Z 2009-04-21T13:16:47Z <p>You can find an example on the <a href="http://code.google.com/p/fluent-nhibernate/wiki/Examples" rel="nofollow">Google Code page for Fluent NHibernate</a>.</p> http://stackoverflow.com/questions/772507/fluent-nhibernate-mapping-a-property-from-another-table/772520#772520 0 Answer by Ryan Riley for Fluent Nhibernate mapping a property from another table Ryan Riley 2009-04-21T13:13:22Z 2009-04-21T13:13:22Z <p>This appears to be the same as <a href="http://stackoverflow.com/questions/698651/nhibernate-map-same-class-to-multiple-tables-depending-on-parent">this question</a>.</p> http://stackoverflow.com/questions/497269/how-to-automatically-reset-to-quick-styles-from-xyz-template-in-word-2007 0 How to Automatically "Reset to Quick Styles from XYZ Template" in Word 2007? Ryan Riley 2009-01-30T21:13:14Z 2009-03-19T10:11:44Z <p>In Word 2007, a user may update the applied styles by selecting the "Reset to Quick Styles from XYZ Template" in the Change Styles menu option.</p> <p><img src="http://farm4.static.flickr.com/3320/3239869162_e6e3cb92ea.jpg" alt="Reset to Quick Styles from XYZ Template" /></p> <p>Does anyone know of a way to automate this? I tried adding a macro to the Document_Open() method in the VBA for the Template project, but it errors out.</p> http://stackoverflow.com/questions/595223/can-you-swap-visualstatemanager-for-multitrigger-in-wpf 0 Can you swap VisualStateManager for MultiTrigger in WPF? Ryan Riley 2009-02-27T15:31:06Z 2009-03-06T21:31:48Z <p>This really relates to creating a library that works across both WPF and Silverlight. The <a href="http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=22567" rel="nofollow">WPF Toolkit</a> includes an implementation of the VisualStateManager included with Silverlight, and if the VisualStateManager can do what the MultiTrigger in WPF does, that solves my problem.</p> <p>I just found an <a href="http://blogs.msdn.com/wpfsdk/archive/2009/02/27/the-visualstatemanager-and-triggers.aspx" rel="nofollow">article on MSDN Blogs discussing the use of VisualStateManager and Triggers</a>, but I'm still not sure whether or not VisualStateManager can be used as a replacement for MultiTriggers.</p> http://stackoverflow.com/questions/364042/silverlight-performance/598187#598187 1 Answer by Ryan Riley for Silverlight performance Ryan Riley 2009-02-28T15:48:32Z 2009-02-28T15:48:32Z <p><a href="http://www.tobinharris.com/2008/8/30/performance-of-silverlight-vs-flash-vs-javascript-vs-tracemonkey" rel="nofollow">tobinharris posted test results of calculating 1,000,000 primes.</a> Silverlight was the clear victor for performance.</p> http://stackoverflow.com/questions/595793/best-way-to-update-a-linq-model-coming-from-a-form/595844#595844 2 Answer by Ryan Riley for Best way to update a LINQ model coming from a form Ryan Riley 2009-02-27T17:51:55Z 2009-02-27T17:57:27Z <p>Stephen Walther just posted <a href="http://stephenwalther.com/blog/archive/2009/02/27/chapter-5-understanding-models.aspx" rel="nofollow">an article describing this very thing</a> in ASP.NET MVC. I would recommend you actually create your own set of DTO's and business objects on top of LINQ to SQL and treat LINQ to SQL as a <a href="http://wizardsofsmart.net/patterns/linq-to-sql-and-entity-framework-as-internal-object-databases" rel="nofollow">language-integrated object database</a> due to the <a href="http://www.west-wind.net/Weblog/posts/246222.aspx" rel="nofollow">gross complexities introduced by managing the DataContext</a>, which according to <a href="http://rads.stackoverflow.com/amzn/click/1590597893" rel="nofollow">Pro LINQ</a>, should be kept alive as little as possible by design.</p> <p>If you are going to use your LINQ to SQL entities as your DTO's, you should get the entity first, detach it, update it, re-attach it, then submit it.</p> http://stackoverflow.com/questions/9662/using-ef-entity-as-dto-object/595839#595839 1 Answer by Ryan Riley for Using EF Entity as DTO Object Ryan Riley 2009-02-27T17:50:40Z 2009-02-27T17:50:40Z <p><strong>DON'T DO IT!!!</strong> That said, if your application is stupid-simple and not distributed in any way, it might work out alright. If you have any level of complexity, treat EF like a language-integrated database, not just language-integrated query access. You won't believe how big of a mess the ObjectContext will become until you get deep into your project, and then it will be too late. Same goes for LINQ to SQL.</p> http://stackoverflow.com/questions/591196/what-would-you-suggest-as-a-high-school-first-language/592927#592927 1 Answer by Ryan Riley for What would you suggest as a high school first language? Ryan Riley 2009-02-26T23:26:24Z 2009-02-26T23:26:24Z <p>I would go with either Adam J.'s response--whatever the College Board is currently using--or Leah's response--JavaScript. In addition to Leah's comments, I'd add that JavaScript allows you:</p> <ul> <li>to teach functional, object-oriented, and prototypal programming styles all from the same language</li> <li>to let students get something working, even if it is an ugly mess</li> <li>to show how to focus on "the good parts", to quote Crockford, which all languages have</li> </ul> <p>I learned Pascal in HS, taught myself C before I got to college, where I learned more, then learned VB later down the road. Python, Ruby, C#, et. al. are great, but something that will allow you freedom to teach or that is required by the College Board is likely the better option.</p> <p>Overall, the <em>concepts</em> are really what's important. Any programmer can pick up the details of another language later down the road when it's necessary.</p> http://stackoverflow.com/questions/592873/in-c-is-it-possible-for-a-function-to-only-be-called-from-within-another-functio/592887#592887 1 Answer by Ryan Riley for In c# is it possible for a function to only be called from within another function? Ryan Riley 2009-02-26T23:13:49Z 2009-02-26T23:13:49Z <p>The short answer is no; however, you can create an anonymous delegate or lambda expression as your internal b() method.</p> http://stackoverflow.com/questions/587138/should-source-code-be-the-only-software-design-documentation 2 Should source code be the only software design documentation? Ryan Riley 2009-02-25T18:03:46Z 2009-02-25T19:52:04Z <p>I just came across Jack Reeves' articles asking <a href="http://www.developerdotstar.com/mag/articles/reeves%5Fdesign%5Fmain.html" rel="nofollow">"What is Software Design."</a> I think he makes excellent points and now wonder whether source code should stand as the only software design documentation we create and leave behind. I think this fits in well with the ideas of DDD's <a href="http://domaindrivendesign.org/discussion/messageboardarchive/UbiquitousLanguage.html" rel="nofollow">Ubiquitous Language</a> and could easily become readable documentation if all classes, properties, methods, etc. were created with meaningful names (i.e. a <a href="http://www.martinfowler.com/bliki/DomainSpecificLanguage.html" rel="nofollow">fluent interface</a>). Documenting requirements as <a href="http://dannorth.net/whats-in-a-story" rel="nofollow">BDD stories</a> first would complete the design.</p> <p>Is this crazy? Have I misinterpreted Reeves' ideas? Is this what Agile is all about? Maybe I'm just having an "Aha!" moment that everyone else has already had, but I'm curious what others think about this as a valid idea.</p> <p><strong>Note:</strong> I highly recommend responders read--or at least skim--the article. I realize that face value appears insane, but Reeves makes some pretty excellent points. Of course, you certainly don't have to do so, but I imagine any responses not considering Reeves' points to be resounding "No!"s. :)</p> http://stackoverflow.com/questions/586297/wcf-contracts-from-entity-framework/587228#587228 0 Answer by Ryan Riley for WCF Contracts from Entity Framework? Ryan Riley 2009-02-25T18:29:55Z 2009-02-25T18:29:55Z <p>You could go the easy way and use <a href="http://codebetter.com/blogs/david.hayden/archive/2008/01/08/getting-started-with-ado-net-data-services.aspx" rel="nofollow">ADO.NET Data Services</a>.</p> http://stackoverflow.com/questions/585219/why-dont-we-have-two-nulls/587171#587171 0 Answer by Ryan Riley for Why don't we have two nulls? Ryan Riley 2009-02-25T18:12:34Z 2009-02-25T18:12:34Z <p>If you are using .NET 3.0+ and need something else, you might try the <a href="http://weblogs.asp.net/podwysocki/archive/2009/01/28/much-ado-about-monads-maybe-edition.aspx" rel="nofollow">Maybe Monad</a>. You could create whatever "Maybe" types you need and, using LINQ syntax, process accordingly.</p> http://stackoverflow.com/questions/586625/javascript-2-0/586897#586897 1 Answer by Ryan Riley for javascript 2.0 Ryan Riley 2009-02-25T17:05:48Z 2009-02-25T17:05:48Z <p>I would highly recommend you learn JavaScript as it is. Whatever changes may come, you'll still be forced to deal with the historic usages sooner or later, and probably very often if you are a web developer. I would also recommend Crockford's <a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">JavaScript: The Good Parts</a>, as it covers all modes of inheritance and strips away the bad stuff you shouldn't use.</p> http://stackoverflow.com/questions/585372/c-out-parameters-trickery/585772#585772 0 Answer by Ryan Riley for C# out parameters trickery? Ryan Riley 2009-02-25T12:21:20Z 2009-02-25T12:21:20Z <p>Similar to ck's response, if all of your <code>someNumber</code> variables are ints, you could have <code>DoStuff()</code> return a <code>List&lt;int&gt;</code> or <code>IEnumerable&lt;int&gt;</code>, then iterate over the returned list to set your <code>Thing</code> objects. If your <code>someNumber</code> variables are of different types, you could create a return type to return the collection of values. However, if all of these values are just constructor parameters for <code>Thing</code> objects, I'd have to agree with ck that you should really have <code>DoStuff()</code> return a <code>List&lt;Thing&gt;</code> or <code>IEnumerable&lt;Thing&gt;</code>. </p> http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/573891#573891 6 Answer by Ryan Riley for SVG vs CANVAS, where is the Web World going towards? Ryan Riley 2009-02-21T23:14:06Z 2009-02-21T23:19:27Z <p>The Raphael JavaScript framework John mentioned is the best I've come across. You could also use pure SVG and display it <a href="http://intertwingly.net/blog/2007/09/11/SVG-on-IE-via-Silverlight-Revisited" rel="nofollow">in IE using XSLT, as described by Sam Ruby</a>. I've also used <a href="http://code.google.com/p/explorercanvas/" rel="nofollow">excanvas</a>, which used to work with IE also. SitePont also had a <a href="http://www.sitepoint.com/blogs/2008/12/22/svg-is-the-future-of-application-development/" rel="nofollow">post</a> recently about the <a href="http://research.sun.com/projects/lively/" rel="nofollow">Lively Kernel</a>, which uses SVG and JavaScript. Very cool, and I'm curious to see how that develops.</p> <p>I prefer the SVG markup and tools (Illustrator, <a href="http://www.inkscape.org/" rel="nofollow">Inkscape</a>, etc), as well as the ability to use the markup over the JavaScript code. Theoretically, you could use SVG with XForms or XHTML to create entire UI's, much like MXML or Silverlight's XAML, or even use XSLT to translate between different platforms. HTML5, while the likely successor to HTML4, is still not a full standard and no one knows for sure whether or not IE will ever have the canvas element.</p> http://stackoverflow.com/questions/39392/asp-net-mvc-vs-xsl/566294#566294 0 Answer by Ryan Riley for ASP.NET MVC vs. XSL Ryan Riley 2009-02-19T17:21:39Z 2009-02-19T17:21:39Z <p>You could also combine the two approaches and have your controller (or better yet, your model) return the XML for the view, as described <a href="http://weblogs.asp.net/jigardesai/archive/2008/02/08/xslt-transformation-in-asp-net-mvc-framework.aspx#" rel="nofollow">here</a>, in which Jigar Desai uses XSLT as the view engine. Steve Sanderson proposed a slightly different approach using JavaScript as the controller <a href="http://blog.codeville.net/category/xslt/#" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/555462/cast-with-gettype 1 Cast with GetType() Ryan Riley 2009-02-17T03:42:41Z 2009-02-19T02:35:01Z <p>Is it possible to cast an object to the type returned from GetType()? I'd like a generic method that can accept an object (for anonymous types) but then return an object cast as the anonymous type. I've been thinking of using the LCG DynamicMethod to build a method on a container class, but I can't exactly figure out what that would look like. The idea to cast with the GetType() method was to be able to get the anonymous type and cast an object to it's actual type without actually knowing the type.</p> <p>The overarching goal is to stick anonymous-typed objects into a container that I could then share and pass between methods.</p> http://stackoverflow.com/questions/525957/tuples-in-ruby 1 Tuples in Ruby Ryan Riley 2009-02-08T16:11:00Z 2009-02-08T16:26:34Z <p>Does anyone use tuples in Ruby? If so, how may one implement a tuple? Ruby hashes are nice and work almost as well, but I'd really like to see something like the Tuple class in Python, where you can use . notation to find the value for which you are looking. I'm wanting this so that I can create an implementation of <a href="http://rads.stackoverflow.com/amzn/click/0321399420" rel="nofollow">D</a>, similar to <a href="http://www.quicksort.co.uk/" rel="nofollow">Dee</a> for Python.</p> http://stackoverflow.com/questions/520613/well-respected-developer-blogs-written-by-non-famous-people/520890#520890 3 Answer by Ryan Riley for Well-respected developer blogs written by non-famous people Ryan Riley 2009-02-06T16:06:12Z 2009-02-06T16:06:12Z <ul> <li><a href="http://flux88.com/blog/" rel="nofollow">Ben Scheirman</a></li> <li><a href="http://blogs.msdn.com/cburrows/" rel="nofollow">Chris Burrows</a></li> <li><a href="http://blogs.msdn.com/chrsmith/" rel="nofollow">Chris Smith</a></li> <li><a href="http://randypatterson.com/" rel="nofollow">Randy Patterson</a></li> <li><a href="http://colinjack.blogspot.com/" rel="nofollow">Colin Jack</a></li> <li><a href="http://blogs.msdn.com/dphill/" rel="nofollow">David Hill</a></li> <li><a href="http://blog.davemorton.net/" rel="nofollow">David Morton</a></li> <li><a href="http://blogs.msdn.com/ericwhite/" rel="nofollow">Eric White</a></li> <li><a href="http://blogs.msdn.com/erwinvandervalk/" rel="nofollow">Erwin van der Valk</a></li> <li><a href="http://blogs.msdn.com/ericlippert/" rel="nofollow">Eric Lippert</a></li> <li><a href="http://iridescence.no/" rel="nofollow">Fredrik Kalseth</a></li> <li><a href="http://blogs.msdn.com/hugunin/" rel="nofollow">Jim Hugunin</a></li> <li><a href="http://blog.jimmy.schementi.com/" rel="nofollow">Jimmy Shementi</a></li> <li><a href="http://joshsmithonwpf.wordpress.com/" rel="nofollow">Josh Smith</a></li> <li><a href="http://blogs.southworks.net/jdominguez/" rel="nofollow">Julian Dominguez</a></li> <li><a href="http://karlshifflett.wordpress.com/" rel="nofollow">Karl Shifflett</a></li> <li><a href="http://blogs.msdn.com/kirillosenkov/" rel="nofollow">Kirill Osenkov</a></li> <li><a href="http://blogs.msdn.com/kcwalina/" rel="nofollow">Krzysztof Cwalina</a></li> <li><a href="http://www.olegsych.com/" rel="nofollow">Oleg Sych</a></li> <li><a href="http://blogs.msdn.com/samng/" rel="nofollow">Sam Ng’s Blog</a></li> <li><a href="http://blogs.msdn.com/johngossman/" rel="nofollow">John Gossman</a></li> <li><a href="http://tomasp.net/blog/" rel="nofollow">Tomas Petrocek</a></li> </ul> http://stackoverflow.com/questions/492373/struggling-with-ddd-repository-pattern-and-associated-domain-models/511590#511590 1 Answer by Ryan Riley for Struggling with DDD, Repository Pattern, and Associated Domain Models... Ryan Riley 2009-02-04T14:30:15Z 2009-02-04T19:32:20Z <p>it depends had a great start on the answer. Once you add the address to the customer and save the customer using:</p> <pre><code>customer.Add(address); customerRepository.Update(customer); </code></pre> <p>Your repository would then <a href="http://www.martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">map</a> your customer and address domain layer entities to LINQ to SQL. This will likely involve creating a new DataContext object, getting the related LINQ to SQL entities (or creating new ones) and then mapping the domain layer entities to your LINQ to SQL entities.</p> <pre><code>var context = new MyDataContext(); var linqCustomer = MapCustomerToLinqCustomer(context, customer); var linqAddress = MapAddressToLinqAddress(context, customer.Addresses.First()); context.SubmitChanges(); </code></pre> <p>You could also use DataMapper classes for mapping, but the MapXYZ methods more closely follow Rob Conery's example. If you need more help with the MapXYZ methods, let me know.</p> http://stackoverflow.com/questions/511915/in-the-model-view-presenter-pattern-can-a-presenter-take-and-use-two-different-v/512554#512554 2 Answer by Ryan Riley for In the Model View Presenter pattern, can a presenter take and use two different view interfaces at the same time? Ryan Riley 2009-02-04T18:01:31Z 2009-02-04T18:01:31Z <p>Can you explain further how your view and control use the same logic? I can't imagine a scenario where I would have this issue. If the logic is separate, I would think you would use two presenters.</p> <p>However, there's no reason one presenter cannot handle multiple views/controls, though I would only reuse a presenter for multiple views that display the same model (e.g. CRUD screens). If one view hosts another from the same presenter, I can't think of a reason why you <em>shouldn't</em> reuse your presenter (e.g. Create screen at the bottom of a List screen).</p> http://stackoverflow.com/questions/481023/linqtosql-select-and-selectmany-vs-join/511759#511759 5 Answer by Ryan Riley for LinqToSQL Select and SelectMany vs Join Ryan Riley 2009-02-04T15:11:31Z 2009-02-04T15:11:31Z <p>The Wayward Weblog had <a href="http://blogs.msdn.com/mattwar/archive/2007/09/04/linq-building-an-iqueryable-provider-part-vii.aspx" rel="nofollow">this to say</a> regarding the matter. Join uses an explicit set of parameters to join on a specific key and allows for left and right outer joins. SelectMany performs a <a href="http://blogs.msdn.com/wesdyer/archive/2008/01/11/the-marvels-of-monads.aspx" rel="nofollow">monadic bind</a> that generally results in either an inner join or cross join. As LINQ is essentially an implementation of functional programming in .NET, the SelectMany is the more natural expression; however, the explicit setup of the Join likely results in faster actions.</p> <p>As to preferred, I think whatever reads the most clearly to you is best. The <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">C# version of 101 LINQ Samples</a> doesn't include Join, but the <a href="http://msdn.microsoft.com/en-us/vbasic/bb737929.aspx" rel="nofollow">VB list</a> shows Join and SelectMany used in different scenarios.</p> http://stackoverflow.com/questions/486947/customizing-iqueryablet/511658#511658 0 Answer by Ryan Riley for Customizing IQueryable<T> Ryan Riley 2009-02-04T14:45:23Z 2009-02-04T14:45:23Z <p>The Wayward Weblog has a great <a href="http://blogs.msdn.com/mattwar/pages/linq-links.aspx" rel="nofollow">tutorial for working with IQueryable</a> and the a related <a href="http://www.codeplex.com/IQToolkit" rel="nofollow">toolkit</a>. Looks like you found a solution that works for you.</p> <p>I'm not sure why you would want to do this unless you are trying to make LINQ to SQL entities follow the <a href="http://martinfowler.com/eaaCatalog/activeRecord.html" rel="nofollow">Active Record</a> pattern. If that is your aim, I would recommend adding static GetById, Query, Insert, Update, and Delete methods on your base and use extension methods to add the methods to the entities. Inside each, you could create a new data context and attach the entity to that context when you are ready to perform the action.</p> <p>The DataContext follows the <a href="http://www.martinfowler.com/eaaCatalog/unitOfWork.html" rel="nofollow">unit of work pattern</a>, and as such, should be <a href="http://weblogs.asp.net/stephenwalther/archive/2008/08/19/asp-net-mvc-tip-34-dispose-of-your-datacontext-or-don-t.aspx" rel="nofollow">kept alive only a short while</a> as you complete the action you perform.</p> http://stackoverflow.com/questions/511511/how-to-move-from-linq-to-sql-to-linq-to-wcf/511540#511540 4 Answer by Ryan Riley for How to move from LINQ to SQL to "LINQ to WCF"? Ryan Riley 2009-02-04T14:20:08Z 2009-02-04T14:34:33Z <p>You'll probably want <a href="http://msdn.microsoft.com/en-us/data/bb931106.aspx" rel="nofollow">ADO.NET Data Services</a>. You'll have to add an <a href="http://msdn.microsoft.com/en-us/library/System.Data.Services.IUpdatable.aspx" rel="nofollow">IUpdatable</a> interface implementation to your entities, and you can use <a href="http://davidhayden.com/blog/dave/archive/2008/12/14/IUpdatableLINQToSQLADONETDataServicesUpdatedORMappers.aspx" rel="nofollow">LINQ to SQL</a>, Entity Framework, <a href="http://www.pnpguidance.net/Post/SubSonic3IUpdatableSupportADONETDataServicesDataAccessORMapper.aspx" rel="nofollow">SubSonic</a>, or a number of others. We're using the <a href="http://code.google.com/p/codesmith/wiki/PLINQO" rel="nofollow">CodeSmith PLINQO templates</a>, which allow you to add this functionality to LINQ to SQL.</p> http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/508381#508381 2 Answer by Ryan Riley for Should we select VB.NET or C# when upgrading our legacy apps? Ryan Riley 2009-02-03T18:45:33Z 2009-02-03T18:45:33Z <p>Aside from the other comments, you really need to decide based on your applications' interaction with various formats, namely Office and XML.</p> <p><strong>Pro for VB.NET:</strong></p> <ol> <li>Optional parameters -- besides being generally useful, they also make working with Office via the Interop much easier. In C# you'll have to add a Type.Missing to every optional parameter you don't want to include. (Note: These will be available in C# 4.0, and you can also use the <a href="http://msdn.microsoft.com/en-us/library/bb448854.aspx" rel="nofollow">Open XML SDK</a> with C# to get around this, so I'm not sure it's such a great pro, just worth noting.)</li> <li><a href="http://www.dnrtv.com/default.aspx?showID=119" rel="nofollow">XML Literals</a> -- If you don't mind sprinkling some XML into your code, this is much better than using StringBuilders or string concatenation. (Again, you could use LINQ to XML in C# for a very fluent approach, if not exactly representative.)</li> </ol> <p><strong>Pro for C#:</strong></p> <ol> <li><a href="http://blogs.msdn.com/ericwhite/pages/The-Yield-Contextual-Keyword.aspx" rel="nofollow">yield</a> -- makes writing iterators in C# far, far easier than VB.NET.</li> <li>Generally more concise syntax should reduce keystrokes, but I'm not sure by how much.</li> </ol> <p>I personally find C# much more concise. I generally build more language-friendly extension methods with which I write the rest of my code, so the language-friendly syntax of VB wouldn't generally get me far. With the addition of yield and the Open XML SDK, most of the reasons I've had for using VB.NET in the past have gone away.</p> http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1532254#1532254 Comment by Ryan Riley on Why do I need an IoC container as opposed to straightforward DI code? Ryan Riley 2009-10-09T16:19:06Z 2009-10-09T16:19:06Z @Jamie, @Thom I don't think Ben's example above was intended to be a complete implementation by any means. That said, I'd be curious to see your implementation of &quot;Observable wrappers around each property&quot; that doesn't look like the typical implementation of INotifyPropertyChanged. http://stackoverflow.com/questions/1195068/the-net-reactive-framework-iobservable-and-linq-over-events/1195080#1195080 Comment by Ryan Riley on The .NET Reactive Framework, IObservable, and Linq over Events Ryan Riley 2009-08-31T18:22:54Z 2009-08-31T18:22:54Z @leppie: If you watch Eric's talk on IObservable/IObserver from Lang.NET, you'll see how they address the issue of out-of-order events. http://stackoverflow.com/questions/1162878/argotic-syndication-framework-v-system-servicemodel-syndication/1162928#1162928 Comment by Ryan Riley on Argotic Syndication Framework v. System.ServiceModel.Syndication Ryan Riley 2009-07-22T16:08:10Z 2009-07-22T16:08:10Z I like this perspective. I think System.ServiceModel.Syndication came in after Argotic and also includes AtomPub. http://stackoverflow.com/questions/586297/wcf-contracts-from-entity-framework/587228#587228 Comment by Ryan Riley on WCF Contracts from Entity Framework? Ryan Riley 2009-03-24T00:45:20Z 2009-03-24T00:45:20Z The danger of ADO.NET Data Services is that it can be quite difficult to follow a DDD approach. You should treat the ADO.NET Data Services as just that: data services. If you need a stronger set of model services, you'll need to create that separately. http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/488205#488205 Comment by Ryan Riley on What is your most useful sql trick to avoid writing more code? Ryan Riley 2009-02-28T15:31:22Z 2009-02-28T15:31:22Z I have to agree with splattne; this is how I learned to write INSERT statements. I only later learned about VALUES(), so I would hardly classify this as a trick. Then again, the majority of responses aren't tricks either, but they're all hella useful. http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/493124#493124 Comment by Ryan Riley on What is your most useful sql trick to avoid writing more code? Ryan Riley 2009-02-28T15:21:33Z 2009-02-28T15:21:33Z @Schmuli - That's how I use this trick, and it's always worked well for me. However, I should note that I rarely allow NULL as a valid value. You have to pick something that won't be valid; otherwise, you won't get all values back. http://stackoverflow.com/questions/592873/in-c-is-it-possible-for-a-function-to-only-be-called-from-within-another-functio/592887#592887 Comment by Ryan Riley on In c# is it possible for a function to only be called from within another function? Ryan Riley 2009-02-27T14:32:40Z 2009-02-27T14:32:40Z Yes, Josh's code is also what I noted above; however, that's not the same as the sample in the original question, which appears to come from a JavaScript example. Josh's example, though, is perfect. http://stackoverflow.com/questions/587138/should-source-code-be-the-only-software-design-documentation/587347#587347 Comment by Ryan Riley on Should source code be the only software design documentation? Ryan Riley 2009-02-25T19:53:27Z 2009-02-25T19:53:27Z Excellent points, David. I noted the use of BDD story-style tests for documenting requirements, but some other aspects certainly would be missing; notably, what wasn't included and the reasons for those. http://stackoverflow.com/questions/586297/wcf-contracts-from-entity-framework/586423#586423 Comment by Ryan Riley on WCF Contracts from Entity Framework? Ryan Riley 2009-02-25T18:34:17Z 2009-02-25T18:34:17Z Following John's response could save you from additional problems in the future (i.e. ObjectContext). Try treating Entity Framework like a language-integrated database, and you'll be safer. <a href="http://wizardsofsmart.net/patterns/linq-to-sql-and-entity-framework-as-internal-object-databases" rel="nofollow">wizardsofsmart.net/patterns/&hellip;</a> http://stackoverflow.com/questions/587138/should-source-code-be-the-only-software-design-documentation/587186#587186 Comment by Ryan Riley on Should source code be the only software design documentation? Ryan Riley 2009-02-25T18:23:45Z 2009-02-25T18:23:45Z I tend to code the same way: concise with detailed documentation. My first CS courses had us writing programs in C using LaTeX. One assignment in particular required ten pages for a simple calculator. His point was made, but I think that was a bit much. http://stackoverflow.com/questions/587138/should-source-code-be-the-only-software-design-documentation/587169#587169 Comment by Ryan Riley on Should source code be the only software design documentation? Ryan Riley 2009-02-25T18:18:01Z 2009-02-25T18:18:01Z That's an interesting angle. I would think of the manual and the design documentation as different things altogether, but you raise a good point. http://stackoverflow.com/questions/585219/why-dont-we-have-two-nulls/587163#587163 Comment by Ryan Riley on Why don't we have two nulls? Ryan Riley 2009-02-25T18:13:28Z 2009-02-25T18:13:28Z Ha! I posted something similar just as you did. I'm not that familiar with Haskell yet, but thanks for posting this. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406801#406801 Comment by Ryan Riley on What's your most controversial programming opinion? Ryan Riley 2009-02-25T12:41:53Z 2009-02-25T12:41:53Z Disagree; I think it's the misuse and misapplication of design patterns for the sake of using them, not the design patterns themselves. If you do something slightly outside of the original intent, name it something new and don't abuse and confuse the existing patterns. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406807#406807 Comment by Ryan Riley on What's your most controversial programming opinion? Ryan Riley 2009-02-25T12:36:15Z 2009-02-25T12:36:15Z I'm currently trying to move away from getters/setters altogether for two reasons: 1) immutable types can use public readonly fields and 2) most UI frameworks that require bindable properties provide a type for that (e.g. DependencyProperty in WPF). http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/573889#573889 Comment by Ryan Riley on SVG vs CANVAS, where is the Web World going towards? Ryan Riley 2009-02-23T19:29:52Z 2009-02-23T19:29:52Z Technically, Henrik is correct. However, you can embed additional markup types in XHTML (e.g. SVG, XForms, etc).