User lomaxx - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T21:26:38Zhttp://stackoverflow.com/feeds/user/493http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/398871/update-all-objects-in-a-collection-using-linq6Update all objects in a collection using Linqlomaxx2008-12-29T22:15:23Z2009-12-15T16:20:56Z
<p>Is there a way to do the following using Linq:</p>
<pre><code>foreach (var c in collection)
{
c.PropertyToSet = value;
}
</code></pre>
<p>To clarify, I want to iterate through each object in a collection and then update a property on each object.</p>
<p>My use case is I have a bunch of comments on a blog post and I want to iterate through each comment on a blog post and set the datetime on the blog post to be +10 hours. I could do it in SQL, but I want to keep it in the business layer.</p>
http://stackoverflow.com/questions/1664503/disadvantages-of-the-force-com-platform5Disadvantages of the Force.com platformlomaxx2009-11-03T00:07:48Z2009-12-12T10:28:18Z
<p>We're currently looking at using the <a href="http://www.salesforce.com/platform/" rel="nofollow">Force.com</a> platform as our development platform and the sales guys and the force.com website are full of reasons why it's the best platform in the world. What I'm looking for tho, is some real disadvantages to using such a platform.</p>
http://stackoverflow.com/questions/1664503/disadvantages-of-the-force-com-platform/1892997#18929970Answer by lomaxx for Disadvantages of the Force.com platformlomaxx2009-12-12T10:28:18Z2009-12-12T10:28:18Z<p>The security model is also very very restrictive... but this isn't the worst part. You can't currently assert whether a user has the ability to perform a particular action.</p>
<p>You can check to see what their role is, but you can't check if that role has permissions to perform the current action.</p>
<p>Even worse is the response from tech support to "try the action and if there's an exception, catch it"</p>
http://stackoverflow.com/questions/16322/learning-about-linq63Learning about LINQlomaxx2008-08-19T14:50:43Z2009-12-10T21:22:22Z
<h2>Overview</h2>
<p>One of the things I've asked a lot about on this site is <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">LINQ</a>. The questions I've asked have been wide and varied and often don't have much context behind them. So in an attempt to consolidate the knowledge I've acquired on Linq I'm posting this question with a view to maintaining and updating it with additional information as I continue to learn about LINQ. </p>
<p>I also hope that it will prove to be a useful resource for other people wanting to learn about LINQ. </p>
<h2>What is LINQ?</h2>
<p>From <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">MSDN</a>:</p>
<blockquote>
<p>The LINQ Project is a codename for a
set of extensions to the .NET
Framework that encompass
language-integrated query, set, and
transform operations. It extends C#
and Visual Basic with native language
syntax for queries and provides class
libraries to take advantage of these
capabilities.</p>
</blockquote>
<p>What this means is that LINQ provides a standard way to query a variety of datasources using a common syntax. </p>
<h2>What flavours of LINQ are there?</h2>
<p>Currently there are a few different LINQ providers provided by Microsoft:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/bb397919.aspx" rel="nofollow">Linq to Objects</a> which allows you to execute queries on any IEnumerable object. </li>
<li><a href="http://msdn.microsoft.com/en-us/library/bb425822.aspx" rel="nofollow">Linq to SQL</a> which allows you to execute queries against a database in an object oriented manner. </li>
<li><a href="http://msdn.microsoft.com/en-us/library/bb387098.aspx" rel="nofollow">Linq to XML</a> which allows you to query, load, validate, serialize and manipulate XML documents.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/bb386964.aspx" rel="nofollow">Linq to Entities</a> as suggested by <a href="http://beta.stackoverflow.com/questions/16322/all-about-linq#33588" rel="nofollow">Andrei</a></li>
</ul>
<p>There are quite a few others, many of which are listed <a href="http://blogs.microsoft.co.il/blogs/vardi/archive/2008/10/09/the-linq-list-projects.aspx" rel="nofollow">here</a>.</p>
<h2>What are the benefits?</h2>
<ul>
<li>Standardized way to query multiple datasources</li>
<li>Compile time safety of queries</li>
<li>Optimized way to perform set based operations on in memory objects</li>
<li>Ability to debug queries</li>
</ul>
<h2>So what can I do with LINQ?</h2>
<p><a href="http://beta.stackoverflow.com/users/489/ch00k" rel="nofollow">Chook</a> provides a way to <a href="http://beta.stackoverflow.com/questions/4432/csv-string-handling#4441" rel="nofollow">output CSV files</a><br>
<a href="http://beta.stackoverflow.com/users/1/jeff-atwood" rel="nofollow">Jeff</a> shows how to <a href="http://beta.stackoverflow.com/questions/9673/remove-duplicates-from-array#9685" rel="nofollow">remove duplicates from an array</a><br>
Bob gets a <a href="http://beta.stackoverflow.com/questions/59/how-do-i-get-a-distinct-ordered-list-of-names-from-a-datatable-using-linq#62" rel="nofollow">distinct ordered list from a datatable</a><br>
<a href="http://beta.stackoverflow.com/users/1659/marxidad" rel="nofollow">Marxidad</a> shows how to <a href="http://beta.stackoverflow.com/questions/15486/sorting-an-ilist-in-c#15495" rel="nofollow">sort an array</a><br>
Dana gets help implementing a <a href="http://stackoverflow.com/questions/185072/learning-linq-quicksort">Quick Sort Using Linq</a> </p>
<h2>Where to start?</h2>
<p><strong>A summary of links from <a href="http://beta.stackoverflow.com/questions/8050/beginners-guide-to-linq" rel="nofollow">GateKiller's question</a> are below</strong>:<br>
Scott Guthrie provides an <a href="http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx" rel="nofollow">intro to Linq on his blog</a><br>
An overview of <a href="http://msdn.microsoft.com/en-us/library/bb308959.aspx" rel="nofollow">LINQ on MSDN</a> </p>
<p><strong><a href="http://beta.stackoverflow.com/users/1758/kareena" rel="nofollow">Karina</a> suggests checking out:</strong> </p>
<ul>
<li><a href="http://www.hookedonlinq.com/MainPage.ashx" rel="nofollow">Hooked on Linq</a> </li>
<li><a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">101 Linq Samples</a></li>
<li><a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> </li>
</ul>
<h2>What do I need to use LINQ?</h2>
<p>Linq is currently available in VB.Net 9.0 and C# 3.0 so you'll need Visual Studio 2008 or greater to get the full benefits. (You could always write your code in notepad and compile using MSBuild)</p>
<p>There is also a tool called <a href="http://beta.stackoverflow.com/questions/7652/querying-like-linq-when-you-dont-have-linq#7710" rel="nofollow">LinqBridge</a> which will allow you to run Linq like queries in C# 2.0. </p>
<h2>Tips and tricks using LINQ</h2>
<p><a href="http://beta.stackoverflow.com/questions/28858/coolest-c-linqlambdas-trick-youve-ever-pulled" rel="nofollow">This question</a> has some tricky ways to use LINQ</p>
http://stackoverflow.com/questions/1664503/disadvantages-of-the-force-com-platform/1880703#18807033Answer by lomaxx for Disadvantages of the Force.com platformlomaxx2009-12-10T12:35:27Z2009-12-10T12:41:48Z<p>Here's a few things I can give you after spending a fair bit of time developing on the platform in the last fortnight or so:</p>
<ol>
<li><p>There's no RESTful API. They have a soap based api that you can call, but there is no way of making true restful calls</p></li>
<li><p>There's no simple way to take their SObjects and convert them to JSON objects.</p></li>
<li><p>The visual force pages are ok until you want to customize them and then it's a whole world of pain. </p></li>
<li><p>Visual force pages need to be bound to SObjects otherwise there's no way to get the standard input fields like the datepicker or select list to work.</p></li>
<li><p>The eclipse plugin is ok if you want to work by yourself, but if you want to work in a large team with the eclipse plugin forget it. It doesn't handle synchronizing to and from the server, it crashes and it isn't really helpful at all.</p></li>
<li><p>THERE IS NO DEBUGGER! If you want to debug, it's literally debug by system.debug statements. This is probably the biggest problem I've found</p></li>
<li><p>Their "MVC" model isn't really MVC. It's a lot closer to ASP.NET Webforms. Your views are tightly coupled to not only the models but the controllers as well.</p></li>
<li><p>Storing a large amount of documents is not feasible. We need to store over 100gb's of documents and we were quoted some ridiculous figure. We've decided to implement our document storage on amazons S3 infrastructure</p></li>
<li><p>Even tho the language is java based, it's not java. You can't import any external packages or libraries. Also the base libraries that are available are severely limited so we've found ourselves implementing a bunch of stuff externally and then exposing those bits as services that are called by force.com</p></li>
<li><p>You can call to external SOAP or REST based services but the message body is limited to 100kb's so it's very restrictive in what you can call.</p></li>
</ol>
<p>In all honesty, whilst there are potential benefits to developing on something like the force.com platform, for me, you couldn't use the force.com platform for true enterprise level apps. At best you could write some basic crud style applications but once you move into anything remotely complicated I'd be avoiding it like the plague.</p>
http://stackoverflow.com/questions/9673/remove-duplicates-from-array4Remove duplicates from arraylomaxx2008-08-13T11:48:44Z2009-12-07T13:27:43Z
<p>I have been working with a string[] array in c# that gets returned from a function call. I was wondering what the best way to remove duplicates from this array would be? I could possibly cast to a Generic collection, but I was wondering if there was a better way to do it, possibly by using a temp array?</p>
http://stackoverflow.com/questions/8440/visual-studio-optimizations198Visual Studio Optimizationslomaxx2008-08-12T03:53:53Z2009-12-06T09:35:10Z
<p>Visual studio is a pretty awesome IDE, but sometimes you just wish it would go faster. I was wondering if people have any tips or tricks to help speed up visual studio in day to day use.</p>
<p>Things that I'm particularly interested in are speeding up build times and switching aspx files from source to design view seem to bring it to a grinding halt.</p>
<p>Having said that, I'd be keen to hear anything that anyone uses to make VS run that little bit faster.</p>
<p><hr /></p>
<p>Edit: Merged answers from related question, covering VS2008SP1. Please include any optimisations specific to the latest IDE.</p>
http://stackoverflow.com/questions/12051/calling-base-constructor-in-c12Calling base constructor in c#lomaxx2008-08-15T07:39:23Z2009-12-04T05:09:03Z
<p>If I inherit from a base class and want to pass something from the constructor of the inherited class to the constructor of the base class, how do I do that?</p>
<p>For example,</p>
<p>If I inherit from the Exception class I want to do something like this:</p>
<pre><code>class MyExceptionClass : Exception
{
public MyExceptionClass(string message, string extraInfo)
{
//This is where it's all falling apart
base(message);
}
}
</code></pre>
<p>Basically what I want is to be able to pass the string message to the base Exception class</p>
http://stackoverflow.com/questions/5694/the-imported-project-c-microsoft-csharp-targets-was-not-found12The imported project "C:\Microsoft.CSharp.targets" was not foundlomaxx2008-08-08T05:08:45Z2009-12-03T05:55:33Z
<p>I got this error today when trying to open a Visual Studio 2008 <strong>project</strong> in Visual Studio 2005:</p>
<p>The imported project "C:\Microsoft.CSharp.targets" was not found</p>
<p>So I thought I'd post it here in case anyone else is interested</p>
http://stackoverflow.com/questions/286294/object-to-object-mapper5Object to object mapperlomaxx2008-11-13T04:58:19Z2009-11-20T12:00:44Z
<p>I've used plenty of <a href="http://en.wikipedia.org/wiki/Object-relational%5Fmapping" rel="nofollow">ORM</a> tools in the past, <a href="http://en.wikipedia.org/wiki/NHibernate" rel="nofollow">NHibernate</a>, <a href="http://nettiers.com/default.aspx?AspxAutoDetectCookieSupport=1" rel="nofollow">.netTiers</a>, <a href="http://en.wikipedia.org/wiki/LLBLGen" rel="nofollow">LLBLGen</a> and more and they always do a pretty good job of mapping data from a database to objects in code. </p>
<p>What I'm looking for though is a framework or a pattern or something that will allow me to transform objects from one type to another.</p>
<p>An example is I have a two web services, one has Investors another has Members. I want to convert an Investor object to a Member object by defining a set of rules that maps the Investor properties to the Member properties and back again.</p>
<p>NHibernate mappings are the closest I can get to doing this, but it only seems to work for Database -> Object mappings. I was wondering if anyone knew of any products that allowed me to do obejct -> object mapping?</p>
http://stackoverflow.com/questions/1760456/should-i-encapsulate-my-ioc-container/1760482#17604820Answer by lomaxx for Should I encapsulate my IoC container?lomaxx2009-11-19T02:13:18Z2009-11-19T02:13:18Z<p>Yeah go for it. It's not a whole lot of extra effort and like you say, it gives you better isolation from third party components.</p>
<p>It also means that you can easily switch out the IoC container if you find something that's better. I recently did this with swapping out the Spring.net IoC container for structuremap. </p>
<p>The <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">ASP.NET MVC Contrib</a> project on codeplex is a pretty good place to start. This is what I based my implementation off.</p>
http://stackoverflow.com/questions/1760449/conventions-c-class-names/1760462#17604624Answer by lomaxx for (Conventions) C# Class nameslomaxx2009-11-19T02:05:47Z2009-11-19T02:05:47Z<p>Personally I'd stick with the second method as that is what namespaces are for: grouping related sets of classes. The first method is just making the class names longer with negligible benefits.</p>
http://stackoverflow.com/questions/1725659/structuremap-or-any-ioc-and-wcf/1725838#17258381Answer by lomaxx for StructureMap (or any IoC) and WCFlomaxx2009-11-12T22:24:39Z2009-11-12T22:24:39Z<p>This dimecast should give you everything you need to know <a href="http://www.dimecasts.net/Casts/CastDetails/150" rel="nofollow">http://www.dimecasts.net/Casts/CastDetails/150</a></p>
<p>from the blog entry:</p>
<blockquote>
<p>When building out a set of services in
WCF you still would like to follow the
SOLID principles and in order to do
this you may want to setup the ability
to inject dependencies (via Structure
Map) into your services at run time.
With WCF extension points this is not
only possible, but pretty easy</p>
</blockquote>
http://stackoverflow.com/questions/1718781/what-are-the-benefits-of-using-an-alternate-view-engine/1718856#17188561Answer by lomaxx for What are the benefits of using an alternate view engine?lomaxx2009-11-11T23:39:40Z2009-11-11T23:39:40Z<p>I think the question you need to ask is "why you want to change view engines" rather than "Should I change view engines" </p>
<p>I chose spark because I wanted cleaner looking views and I also wanted to use it to create templates for things other than HTML. I currently use it for generating XML, JSON and email templates so it's become a templating engine for me as well as a view engine. This is made possible because it allows you to render views to strings rather, which isn't (easily) available in the standard view engine.</p>
<p>It's also important to note that you don't have to use a single view engine either. You can use multiple engines at the same time so you might use the default view engine for HTML templates, but switch to spark for XML.</p>
<p>Overall, if the default view engine is doing everything you need and you're happy with it then I wouldn't bother switching at all, however if you have specific needs that aren't being met by the default view engine then maybe it's time to look at alternatives.</p>
http://stackoverflow.com/questions/1610611/moving-away-from-ms-sql-server-to-open-source-rdbms3Moving away from MS SQL Server to open source RDBMSlomaxx2009-10-22T23:35:53Z2009-11-10T18:39:30Z
<p>So I'm an MSSQL guy and I have been for a while because it's what I've always used in my workplaces. So when I create a new project I'm usually inclined to just grab a copy of SQL Express and start working from there.</p>
<p>However, I've been asked to work on a new project but for various reasons, we can't use SQL Express edition and the licensing of the full version is too expensive.</p>
<p>So I'm wondering what the best open source RDBMS would be for someone that has used MSSQL for pretty much the entirety of their career.</p>
<p>My main requirements would be that:</p>
<ol>
<li>It doesn't necessarily have to run on windows, altho this would be preferred.</li>
<li>It would be great if it had excellent tooling support, however I'm not afraid to use the command line</li>
<li>It needs to be easy to install, administer and backup.</li>
</ol>
http://stackoverflow.com/questions/1698752/spark-view-engine-an-assembly-with-the-same-simple-name-error/1698790#16987900Answer by lomaxx for Spark View Engine "An assembly with the same simple name" errorlomaxx2009-11-09T02:19:22Z2009-11-09T02:19:22Z<p>It sounds like you're referencing the same assembly multiple times in your view. Instead of using the <code><use assembly=""></code> element you might want to use the <code><use namesace=""></code> element</p>
http://stackoverflow.com/questions/1698156/does-java-have-automatic-properties0Does Java have Automatic Properties?lomaxx2009-11-08T22:33:03Z2009-11-08T22:37:20Z
<p>In c# you can setup properties like this:</p>
<pre><code>public int CustomerId {get;set;}
</code></pre>
<p>Which sets up an automatic property called CustomerId, but I was wondering if there was anything similar in Java?</p>
http://stackoverflow.com/questions/1698064/best-practices-to-convert-a-nhibernate-app-as-multi-tenant/1698137#16981371Answer by lomaxx for Best practices to convert a NHibernate app as multi-tenant?lomaxx2009-11-08T22:28:02Z2009-11-08T22:28:02Z<p>Probably the best thing I could think of is to embrace the Filter feature of NHibernate. It allows you to easily enable a filter on the query you're running and you can optionally enable them on tables that are setup to be multi-tenanted</p>
http://stackoverflow.com/questions/1656831/does-any-one-know-of-any-apex-refactoring-tools/1694389#16943892Answer by lomaxx for Does any one know of any APEX refactoring tools?lomaxx2009-11-07T20:56:32Z2009-11-07T20:56:32Z<p>As yet there are no tools that offer refactoring support for the Apex language.</p>
http://stackoverflow.com/questions/1684746/domain-objects-causing-nhibernate-errors/1684773#16847731Answer by lomaxx for Domain Objects Causing NHibernate Errorslomaxx2009-11-06T01:09:40Z2009-11-06T01:09:40Z<p>You must be explicitly mapping this property in your NHibernate mapping file. Take a look at the generated hbm.xml file and remove this property from the mapping file so NHibernate will ignore it.</p>
http://stackoverflow.com/questions/1684667/c-writing-a-csv-file-in-net/1684677#16846772Answer by lomaxx for C# - Writing a CSV file in .netlomaxx2009-11-06T00:44:46Z2009-11-06T00:44:46Z<p>I've used <a href="http://filehelpers.sourceforge.net/" rel="nofollow">filehelpers</a> extensively and it's pretty awesome for generating CSVs.</p>
http://stackoverflow.com/questions/1678999/does-team-leader-have-to-take-blame-for-subordinate-errors/1679021#16790210Answer by lomaxx for Does team leader have to take blame for subordinate errors?lomaxx2009-11-05T08:00:47Z2009-11-05T08:00:47Z<p>It sounds like there's a number of problems and whilst I don't think as team leader you should be solely responsible, your team should be accountable as a whole for any bugs that make it through to production.</p>
<p>You should probably look at introducing code reviews to help check the code before it goes into any environment.</p>
<p>I also think that you need to improve your testing processes as well as provide an earlier opportunity for the client to get a hands on "beta" of the product before it is released because in reality, there are always going to be bugs and you need a process to help reduce those bugs rather than trying to blame a single person for any particular bug.</p>
http://stackoverflow.com/questions/1676947/which-orm-should-i-use-instead-of-linq-to-sql/1677016#16770162Answer by lomaxx for Which ORM should I use instead of Linq to Sql?lomaxx2009-11-04T22:09:54Z2009-11-04T22:09:54Z<p>I would say that NHibernate + FluentNhibernate would get you up and running very quickly. The best thing about FluentNhibernate is that you can set it up in just a few lines and it'll automatically map your objects to your database for you.</p>
<p>If you want something that's a little lighter on the config you might want to check out <a href="http://www.subsonicproject.com/" rel="nofollow">Subsonic</a></p>
http://stackoverflow.com/questions/1671016/whats-the-most-impressive-thing-youve-seen-done-with-javascript/1671038#167103818Answer by lomaxx for Whats the most impressive thing you've seen done with JavaScript?lomaxx2009-11-04T00:31:27Z2009-11-04T14:44:25Z<p>Plenty of stuff over at <a href="http://www.chromeexperiments.com/" rel="nofollow">Chrome Experiments</a> to check out. My personal favourite is the <a href="http://www.chromeexperiments.com/detail/depth-of-field/" rel="nofollow">Depth of Field</a>.</p>
http://stackoverflow.com/questions/1671669/migrating-from-os-commerce-to/1671686#16716862Answer by lomaxx for Migrating from OS Commerce to...?lomaxx2009-11-04T04:34:45Z2009-11-04T04:39:54Z<p>Your best bet is to probably contact BV commerce and ask them directly.</p>
<p>There is also a tool from Magento which allows you to migrate from osCommerce to magentocommerce. <a href="http://www.magentocommerce.com/extension/114/os-commerce-import" rel="nofollow">http://www.magentocommerce.com/extension/114/os-commerce-import</a></p>
http://stackoverflow.com/questions/1671470/how-does-asp-net-mvc-make-it-easier-to-create-purpose-built-content-device-speci/1671486#16714861Answer by lomaxx for How does ASP.NET MVC make it easier to create purpose-built, content/device-specific views?lomaxx2009-11-04T03:08:47Z2009-11-04T03:08:47Z<p>I believe the ASP.NET MVC framework (not necessarily the pattern) makes it easier to create purpose built views mainly because you can make a request to the exact same URL and depending on the request header you return an ActionResult that that is tailored specifically for that request.</p>
<p>Webforms makes this a little more difficult as you're generally requesting a specific resource (i.e. an aspx page) rather than requesting a URL. When you request that resource the webforms engine makes it a lot harder to return something other than the requested resource.</p>
<p>Having said that, it's not impossible with webforms. You can do something similar with webforms where you can modify the response headers and return something completely different, however it's not quite as intuitive as it is in the MVC framework.</p>
http://stackoverflow.com/questions/1671059/making-a-short-url-similar-to-tinyurl-com/1671080#16710801Answer by lomaxx for Making a short URL similar to TinyURL.comlomaxx2009-11-04T00:44:15Z2009-11-04T00:44:15Z<p>I recently saw something like this on codeplex for sharepoint and they seemed to use hexadecimal numbers for the url shortener. It might be worth taking a look at how they do it here <a href="http://spurlshortener.codeplex.com/" rel="nofollow">http://spurlshortener.codeplex.com/</a></p>
http://stackoverflow.com/questions/1670990/closing-the-sale-with-difficult-customers/1671022#16710220Answer by lomaxx for Closing The Sale With Difficult Customerslomaxx2009-11-04T00:25:08Z2009-11-04T00:25:08Z<p>"It's like the faint smell of piss on the subway. Nobody likes it, but there isn't much you can do about it"</p>
http://stackoverflow.com/questions/1670929/net-mvc-app-is-constantly-compiling-how-do-i-find-out-why/1670984#16709841Answer by lomaxx for .Net MVC App is constantly compiling - how do I find out why?lomaxx2009-11-04T00:11:40Z2009-11-04T00:11:40Z<p>My guess would be that it's compiling views. Try <a href="http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc">pre-compiling your views</a> and see if you still have the same problems.</p>
http://stackoverflow.com/questions/1670736/advanced-net-membership-role-provider/1670923#16709231Answer by lomaxx for Advanced .NET Membership/Role Providerlomaxx2009-11-03T23:53:35Z2009-11-03T23:53:35Z<p>You might want to check out <a href="http://netsqlazman.codeplex.com/" rel="nofollow">NetSqlAzMan</a>. It allows you to define tasks and assign them to roles and then authenticate and authorise your IPrincipal objects. </p>
<p>You may need to roll your own security attribute but NetSqlAzMan should help make that a reasonably easy task.</p>
http://stackoverflow.com/questions/1760265/what-makes-domain-specific-software-so-bad-and-how-can-i-avoid-those-mistakesComment by lomaxx on What makes domain specific software so bad, and how can I avoid those mistakeslomaxx2009-11-19T01:07:47Z2009-11-19T01:07:47Z</rant>.. man that was a long posthttp://stackoverflow.com/questions/1684667/c-writing-a-csv-file-in-net/1684677#1684677Comment by lomaxx on C# - Writing a CSV file in .netlomaxx2009-11-06T01:25:37Z2009-11-06T01:25:37ZYou could just create some new "generator only" classes and use AutoMapper to map your real classes to the generator classes and then write those classes out using FileHelpers. I've done it before and it's pretty simple.http://stackoverflow.com/questions/1676947/which-orm-should-i-use-instead-of-linq-to-sql/1677016#1677016Comment by lomaxx on Which ORM should I use instead of Linq to Sql?lomaxx2009-11-05T00:14:03Z2009-11-05T00:14:03ZCastle ActiveRecord is fine, however I think fluent has a few advantages over it. First is that you can use conventions to setup your mappings. Second is that you can map your objects without having to make any changes to your class files. With active record you have to use attributes which I feel pollutes your object model somewhat.http://stackoverflow.com/questions/1670990/closing-the-sale-with-difficult-customers/1671022#1671022Comment by lomaxx on Closing The Sale With Difficult Customerslomaxx2009-11-04T00:55:21Z2009-11-04T00:55:21ZI think the question is if I was answering your question or referring to ithttp://stackoverflow.com/questions/1664503/disadvantages-of-the-force-com-platform/1670146#1670146Comment by lomaxx on Disadvantages of the Force.com platformlomaxx2009-11-03T23:59:54Z2009-11-03T23:59:54Z@Jeremy out of curiousity... how much time do you spend in the eclipse ide plugin vs just setting things up in the "setup" menu's within a salesforce application?http://stackoverflow.com/questions/1664503/disadvantages-of-the-force-com-platform/1670146#1670146Comment by lomaxx on Disadvantages of the Force.com platformlomaxx2009-11-03T22:29:05Z2009-11-03T22:29:05ZThat's a great list you've got therehttp://stackoverflow.com/questions/1664521/blacking-out-content-leaving-one-page-div-visableComment by lomaxx on Blacking out content leaving one page div visablelomaxx2009-11-03T00:42:50Z2009-11-03T00:42:50Zare you talking about something like this? <a href="http://www.extjs.com/deploy/dev/examples/core/spotlight.html" rel="nofollow">extjs.com/deploy/dev/…</a>http://stackoverflow.com/questions/1663967/asp-net-page-crashes-other-asp-pagesComment by lomaxx on Asp.net page crashes other asp pageslomaxx2009-11-02T21:57:14Z2009-11-02T21:57:14Zcan you post some sample code so we can get an idea of what is happening on those pages?http://stackoverflow.com/questions/1658794/many-to-many-collection-mapping-in-nhibernate/1658814#1658814Comment by lomaxx on Many-to-many collection mapping in NHibernatelomaxx2009-11-02T02:32:48Z2009-11-02T02:32:48ZCorrect, you don't need to define the class, but you still need to map the relationship through the table in the databasehttp://stackoverflow.com/questions/1636627/nhibernate-projection-list/1636709#1636709Comment by lomaxx on NHibernate : Projection Listlomaxx2009-10-28T13:24:16Z2009-10-28T13:24:16Zyou might need to add a CreateAlias to your clausehttp://stackoverflow.com/questions/1628910/unit-testing-a-function-that-does-not-return-anything-in-javascriptComment by lomaxx on Unit testing a function that does not return anything in Javascriptlomaxx2009-10-27T05:33:12Z2009-10-27T05:33:12Zcan you post a sample of the type of code you're trying to test?http://stackoverflow.com/questions/1623007/is-the-safari-web-browser-an-open-source-projectComment by lomaxx on Is the Safari Web Browser an Open Source Project?lomaxx2009-10-26T05:53:52Z2009-10-26T05:53:52Z@Soviut: I'm definitely not interested in making another web browser, I just wanted to play around with how safari works.http://stackoverflow.com/questions/1575454/nhibernate-inheritance-mapping/1576485#1576485Comment by lomaxx on NHibernate Inheritance Mappinglomaxx2009-10-26T04:03:47Z2009-10-26T04:03:47ZTechnically speaking a discriminator will work.. so I'm going to accept this for now.http://stackoverflow.com/questions/302720/how-to-delete-child-object-in-nhibernate/302860#302860Comment by lomaxx on How to delete child object in NHibernate?lomaxx2009-10-26T01:33:08Z2009-10-26T01:33:08ZThanks for the quality explanationhttp://stackoverflow.com/questions/1605077/single-file-class-to-store-constants-in-asp-net/1605089#1605089Comment by lomaxx on Single file/class to store constants in ASP.NETlomaxx2009-10-22T05:08:34Z2009-10-22T05:08:34ZI still don't think that's what the OP was asking.. "Each page is using some common values" would indicate the <b>values</b> are shared rather than the properties. Changing the values on Page1 that's inherited from PageBase won't make then available Page2 that inherits from PageBase.