User Ryan Rinaldi - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T13:00:19Zhttp://stackoverflow.com/feeds/user/2278http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1614694/titlecase-in-visual-c/1614725#16147251Answer by Ryan Rinaldi for TitleCase In Visual C++Ryan Rinaldi2009-10-23T17:02:05Z2009-10-23T17:02:05Z<p>Check the documentation on <a href="http://msdn.microsoft.com/en-us/library/system.globalization.textinfo.totitlecase.aspx" rel="nofollow">TextInfo.ToTitleCase</a> it has examples for Managed C++</p>
http://stackoverflow.com/questions/1609027/is-it-possible-to-exclude-some-members-of-a-type-from-xmlserializer-serialization/1609046#16090466Answer by Ryan Rinaldi for Is it possible to exclude some members of a type from XmlSerializer serialization?Ryan Rinaldi2009-10-22T18:13:57Z2009-10-22T18:13:57Z<p>You are looking for <a href="http://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlignoreattribute.aspx" rel="nofollow">XmlIgnore</a></p>
http://stackoverflow.com/questions/1235410/web-based-code-review-tools-for-team-foundation-server/1273877#12738771Answer by Ryan Rinaldi for Web Based Code-Review tools for Team Foundation ServerRyan Rinaldi2009-08-13T18:49:28Z2009-08-13T18:49:28Z<p>This isn't really web based (unless you use the TFS web frontend) but this tool looks like it might fit your needs: <a href="http://teamreview.codeplex.com/" rel="nofollow">TeamReview</a></p>
http://stackoverflow.com/questions/484381/db-column-named-order-with-fluent-nhibernate/484399#4843993Answer by Ryan Rinaldi for DB Column named "Order" with Fluent NHibernateRyan Rinaldi2009-01-27T17:39:55Z2009-01-27T17:39:55Z<p>Try putting Order in back ticks: <code>`Order</code> `. Since FluentNH is generating HBM files at runtime I imagine that should fix the problem.</p>
http://stackoverflow.com/questions/273487/how-can-i-use-expressiont-in-nhibernate/273506#2735063Answer by Ryan Rinaldi for How can I use Expression<T> in NHibernate?Ryan Rinaldi2008-11-07T20:17:13Z2008-11-07T20:17:13Z<p>Look at LINQ to NHibernate. Kyle Baley has a great <a href="http://codebetter.com/blogs/kyle.baley/archive/2008/04/07/trying-out-linq-for-nhibernate.aspx" rel="nofollow">overview of it</a></p>
http://stackoverflow.com/questions/213509/is-it-possible-to-pass-a-app-setting-in-the-web-config-to-a-common-c-class/213516#21351610Answer by Ryan Rinaldi for Is it possible to pass a App setting in the web.config to a Common C# classRyan Rinaldi2008-10-17T19:22:29Z2008-10-17T19:22:29Z<p>In any class you can use <code>ConfigurationManager.AppSettings["KeyToSetting"]</code> to access any value in the element of web.config (or app.config) </p>
http://stackoverflow.com/questions/123423/do-you-leave-historical-code-commented-out-in-classes-that-you-update/123459#12345912Answer by Ryan Rinaldi for Do you leave historical code commented out in classes that you update?Ryan Rinaldi2008-09-23T19:58:43Z2008-09-23T19:58:43Z<p>Delete delete delete delete. You are changing the code for a reason (hopefully a good one), there is no need to leave a history inside of the code file of what it <strong>used</strong> to do. People have a hard enough time figure out what it is currently doing!</p>
http://stackoverflow.com/questions/122990/how-to-determine-if-a-record-in-every-source-represents-the-same-person/123076#1230763Answer by Ryan Rinaldi for how to determine if a record in every source, represents the same personRyan Rinaldi2008-09-23T19:04:12Z2008-09-23T19:10:57Z<p>I've had to do something similar before and what I did was use a <a href="http://en.wikipedia.org/wiki/Double_Metaphone" rel="nofollow">double metaphone</a> phonetic search on the names. </p>
<p>Before I compared the names though, I tried to normalize away any name/nickname differences by looking up the name in a nick name table I created. (I populated the table with census data I found online) So people called Bob became Robert, Alex became Alexander, Bill became William, etc. </p>
<p><strong>Edit</strong>: Double Metaphone was specifically designed to be better than Soundex and work in languages other than English.</p>
http://stackoverflow.com/questions/122942/how-to-return-multiple-values-in-one-column-t-sql/123006#1230062Answer by Ryan Rinaldi for How to return multiple values in one column (T-SQL)?Ryan Rinaldi2008-09-23T18:53:36Z2008-09-23T18:53:36Z<p>My boss wrote up an article on this way back 2003: <a href="http://ray.jez.net/?p=426" rel="nofollow">Concatenation with COALESCE</a></p>
http://stackoverflow.com/questions/118526/how-do-you-deal-with-concurrency-in-nhibernate/118564#1185648Answer by Ryan Rinaldi for How do you deal with concurrency in NHibernate?Ryan Rinaldi2008-09-23T01:08:19Z2008-09-23T01:08:19Z<p>NHibernate supports 2 types of optimistic concurrency. </p>
<p>You can either have it check dirty fields by using "optimistic-lock=dirty" attribute on the "class" element in your mapping files or you can use "optimistic-lock=version" (which is also the default). If you are using version you need to provide a "version" element in your mapping file that maps to a field in your database. </p>
<p>Version can be of type Int64, Int32, Int16, Ticks, Timestamp, or TimeSpan and are automatically incremented on save. See <a href="http://www.hibernate.org/hib_docs/nhibernate/html/mapping.html" rel="nofollow">Chapter 5</a> in the NHibernate documentation for more info.</p>
http://stackoverflow.com/questions/115001/how-can-i-generate-migration-ddl-from-nhibernate-mapping-files/115196#1151965Answer by Ryan Rinaldi for How can I generate "migration" DDL from NHibernate mapping files?Ryan Rinaldi2008-09-22T14:36:42Z2008-09-22T14:36:42Z<p>Look into <a href="http://morten.lyhr.dk/2008/03/nhibernates-schemaupdate-feature.html" rel="nofollow">SchemaUpdate</a>. Very similiar API as SchemaExport but it only creates migrations.</p>
http://stackoverflow.com/questions/114478/how-do-you-create-a-custom-attribute-for-ms-test/115050#1150503Answer by Ryan Rinaldi for How do you create a custom attribute for MS Test?Ryan Rinaldi2008-09-22T14:09:46Z2008-09-22T14:09:46Z<p>I don't think you will like the answer: there is no supported way. However, there is a codeplex project <a href="http://www.codeplex.com/MSTestExtensions" rel="nofollow">MSTestExtensions</a> implementing a work around and a <a href="http://callumhibbert.blogspot.com/2008/01/extending-mstest.html" rel="nofollow">blog post</a> about how MSTestExtensions works. (Using ContextBoundObject)</p>
http://stackoverflow.com/questions/95974/do-access-modifiers-affect-reflection-also/95997#959973Answer by Ryan Rinaldi for Do access modifiers affect reflection also?Ryan Rinaldi2008-09-18T19:24:57Z2008-09-18T19:24:57Z<p>Yes you can access private fields via reflection. This is how a lot of ORMs go about populating an object without going through your properties (which will invoke business logic you might not have intended to be run on an object load).</p>
<p>Access modifiers are not a form of security!</p>
http://stackoverflow.com/questions/95895/how-to-check-if-one-datetime-is-later-than-another-in-c/95921#959216Answer by Ryan Rinaldi for How to check if one DateTime is later than another in C#Ryan Rinaldi2008-09-18T19:17:15Z2008-09-18T19:17:15Z<pre><code>if(StartDate < EndDate)
{}
</code></pre>
<p>DateTime supports normal comparision operators.</p>
http://stackoverflow.com/questions/28441/optimizing-for-low-bandwidth/28462#284622Answer by Ryan Rinaldi for Optimizing for low bandwidthRyan Rinaldi2008-08-26T15:55:09Z2008-08-26T15:55:09Z<p>I would suggest you look into Silverlight and <a href="http://www.vertigo.com/Deepzoom.aspx" rel="nofollow">DeepZoom</a></p>
http://stackoverflow.com/questions/26971/nhibernate-vs-linq-to-sql/26990#269901Answer by Ryan Rinaldi for NHibernate vs LINQ to SQLRyan Rinaldi2008-08-25T21:49:20Z2008-08-25T21:49:20Z<p>By LINQ, I'm assuming you mean LINQ to SQL because LINQ, by itself, has no database "goings on" associated with it. It's just an query language that has a boat-load of syntac sugar to make it look SQL-ish.</p>
<p>In the very basic of basic examples, NHibernate and LINQ to SQL seem to both be solving the same problem. Once you get pass that you soon realize that NHibernate has support for a lot of features that allow you to create truly rich domain models. There is also a LINQ to NHibernate project that allows you to use LINQ to query NHibernate in much the same way as you would use LINQ to SQL.</p>
http://stackoverflow.com/questions/26863/how-do-i-really-reset-the-visual-studio-window-layout/26941#269410Answer by Ryan Rinaldi for How do I REALLY reset the Visual Studio window layout?Ryan Rinaldi2008-08-25T21:27:09Z2008-08-25T21:27:09Z<p>What was this plugin?</p>
http://stackoverflow.com/questions/26857/how-do-you-programmatically-fill-in-a-form-and-post-a-web-page/26932#269321Answer by Ryan Rinaldi for How do you programmatically fill in a form and 'POST' a web page?Ryan Rinaldi2008-08-25T21:21:30Z2008-08-25T21:21:30Z<p>View the source of the page and use the WebRequest class to do the posting. No need to drive IE. Just figure out what IE is sending to the server and replicate that. Using a tool like Fiddler will make it even easier.</p>
http://stackoverflow.com/questions/26733/getting-all-types-that-implement-an-interface-with-c-3-5/26766#26766-1Answer by Ryan Rinaldi for Getting all types that implement an interface with C# 3.5Ryan Rinaldi2008-08-25T20:18:59Z2008-08-25T20:18:59Z<p>You could use some LINQ to get the list:</p>
<pre><code>var types = from type in this.GetType().Assembly.GetTypes()
where type is ISomeInterface
select type;
</code></pre>
<p>But really, is that more readable?</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/26336#263363Answer by Ryan Rinaldi for VBScript/ASP ClassicRyan Rinaldi2008-08-25T16:19:15Z2008-08-25T16:19:15Z<p>Echoing some ideas and adding a few of my own: </p>
<p>1) Best way to access the database would to abstract that away into a COM component of some sort that you access from VBScript.</p>
<p>2) If you really wanted to you could write the controller in VBScript and then access that in the page. It would resemble a Page Controller pattern and not a Front Controller that you would see in ASP.NET MVC or MonoRail</p>
<p>3) Why are you doing this to yourself? Most of the tooling required to do this kind of work isn't even available anymore.</p>
http://stackoverflow.com/questions/1614694/titlecase-in-visual-c/1614725#1614725Comment by Ryan Rinaldi on TitleCase In Visual C++Ryan Rinaldi2009-10-23T20:50:29Z2009-10-23T20:50:29ZCheck your language filter on the top of the page. You might have MSDN set to only show you C# code.http://stackoverflow.com/questions/1608714/how-to-avoid-argument-validationComment by Ryan Rinaldi on How to avoid argument validationRyan Rinaldi2009-10-22T18:19:05Z2009-10-22T18:19:05ZAny reason you don't want to use properties (instead of public fields) and place the validation in those?http://stackoverflow.com/questions/1529703/how-to-create-a-excel-file-with-sheets-in-c/1529719#1529719Comment by Ryan Rinaldi on How to create a excel file with sheets in C#?Ryan Rinaldi2009-10-07T15:51:13Z2009-10-07T15:51:13Z+1 for ExcelXmlWriter from Carlos. Works quite well.http://stackoverflow.com/questions/603548/c-assembly-object-argument-debuggingComment by Ryan Rinaldi on C# Assembly Object Argument & DebuggingRyan Rinaldi2009-03-02T19:03:43Z2009-03-02T19:03:43ZWhat error are you getting?http://stackoverflow.com/questions/302160/asp-net-globalization-displaying-datesComment by Ryan Rinaldi on ASP.NET Globalization -- Displaying datesRyan Rinaldi2008-11-19T17:00:12Z2008-11-19T17:00:12ZIt's i18n not i13n. Can somebody change that tag?