User Kevin Pang - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T06:08:15Zhttp://stackoverflow.com/feeds/user/1574http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1869836/setting-ul-to-be-visible-from-code-behind-not-working/1869952#18699521Answer by Kevin Pang for Setting UL to be visible from code-behind not workingKevin Pang2009-12-08T21:25:58Z2009-12-08T21:25:58Z<p>You're hiding the "notifications" div on this line:</p>
<pre><code>notifications.Visible = false;
</code></pre>
<p>Then trying to show the "notificationsList" ul afterwards:</p>
<pre><code>notificationsList.Visible = true;
</code></pre>
<p>As long as the "notifications" div is hidden, it doesn't matter whether your "notificationsList" is visible or not since it's a child element. Change the logic inside the if statement to look like this:</p>
<pre><code>if (!string.IsNullOrEmpty(notificationsList.InnerHtml))
{
notifications.Visible = true;
notificationsList.Visible = true;
}
</code></pre>
http://stackoverflow.com/questions/1863884/which-orm-supports-this/1863925#18639255Answer by Kevin Pang for Which ORM Supports thisKevin Pang2009-12-08T01:06:54Z2009-12-08T01:34:46Z<p>NHibernate supports this using the Criteria API:</p>
<pre><code>ICriteria criteria = session.CreateCriteria<Article>();
if (cat > 0)
criteria.Add(Expression.Eq("categoryID", cat));
</code></pre>
http://stackoverflow.com/questions/1841555/what-are-some-good-entity-framework-alternatives/1841616#18416163Answer by Kevin Pang for What are some good Entity Framework AlternativesKevin Pang2009-12-03T17:42:26Z2009-12-03T17:42:26Z<p>Most ORMs will still require some inline SQL every now and then. NHibernate, Linq 2 Sql, etc. don't support full text search out of the box (NHibernate has NHibernate.Search which uses Lucene.NET to perform full text search, Linq 2 Sql has access to stored procedures that you can create that use full text search).</p>
<p>This doesn't mean you should scrap using an ORM altogether though. There's a <em>ton</em> of repetitive plumbing code that ORMs can save you from writing and the general use cases are all relatively easy to execute (e.g. CRUD operations) with any ORM.</p>
http://stackoverflow.com/questions/1837601/nhibernate-many-to-many-is-deleting-all-associations-before-inserting0NHibernate Many-To-Many Is Deleting All Associations Before InsertingKevin Pang2009-12-03T04:16:33Z2009-12-03T04:50:01Z
<p>I have a Users table and a Networks table with a many-to-many relationship between them (a user may be long to multiple networks and a network may contain many users). The many-to-many relationship is held in a "UserNetworks" table that simply has two columns, UserId and NetworkId.</p>
<p>My classes look like this:</p>
<pre><code>public class User
{
public IList<Network> Networks {get; set;}
}
public class Network
{
public IList<Usre> Users {get; set;}
}
</code></pre>
<p>The NHibernate mappings for these many-to-many collections looks like this:</p>
<p>User.hbm.xml:</p>
<pre><code><bag name="Networks" table="UserNetworks" cascade="save-update" inverse="true">
<key column="UserId" />
<many-to-many class="Network" column="NetworkId" />
</bag>
</code></pre>
<p>Network.hbm.xml:</p>
<pre><code><bag name="Users" table="UserNetworks" cascade="save-update">
<key column="NetworkId" />
<many-to-many class="User" column="UserId" />
</bag>
</code></pre>
<p>In my code, I create an association between a user and a network like so:</p>
<pre><code>user.Networks.Add(network);
network.Users.Add(user);
</code></pre>
<p>I would expect the SQL run to simply perform one INSERT to the UserNetworks table. Instead, it executes a DELETE on the UserNetworks table with NetworkID = X, then proceeds to reinsert all the UserNetworks rows back in along with the new association.</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1821649/how-can-i-force-nhibernate-transaction-to-fail/1821931#18219311Answer by Kevin Pang for How can i force Nhibernate transaction to fail ?Kevin Pang2009-11-30T19:37:30Z2009-11-30T19:37:30Z<p>If you have to have the exception occur within the tx.Commit(), then maybe insert/update a record with invalid data (e.g. a string that's too long for the db column).</p>
http://stackoverflow.com/questions/1794159/fast-keyword-lookup/1794186#17941860Answer by Kevin Pang for Fast keyword lookupKevin Pang2009-11-25T01:57:35Z2009-11-25T01:57:35Z<p>The hardcoded list is faster. A database hit to retrieve the list will undoubtedly be slower than pulling the list from an in-memory object.</p>
<p>As for which datatype to store the values in, an array would probably be faster and take up less memory than a List, but trivially so.</p>
http://stackoverflow.com/questions/1792080/difficult-lessons-for-new-programmers/1792100#179210038Answer by Kevin Pang for Difficult lessons for new programmers?Kevin Pang2009-11-24T18:48:00Z2009-11-24T18:48:00Z<p><strong>Version control is an absolute necessity</strong>. It's something that goes without saying when working with experienced devs in a team environment, but is easily overlooked when you're just developing on your own without any guidance or perceived need for rollbacks/auditing.</p>
http://stackoverflow.com/questions/1791607/linq-2-sql-eager-loading0Linq 2 Sql Eager LoadingKevin Pang2009-11-24T17:22:19Z2009-11-24T17:22:19Z
<p>It seems like Linq 2 Sql has some support eager loading. Let's say I wanted to load a blog post with all of its comments, for example:</p>
<pre><code>var options = new DataLoadOptions();
options.LoadWith<Post>(p => p.Comments);
dataContext.LoadOptions = options;
</code></pre>
<p>This works fairly well, but it feels a little strange to be defining this on the datacontext level. If you use the datacontext as a unit of work that's shared between repositories, then you might run into a situation where one query needs the comments eager-loaded and the other doesn't. Linq 2 Sql's eager-loading capabilities don't seem to support that. It also seems to throw an error if you try to set the datacontext's LoadOptions after a query has already been executed against that particular datacontext, which means that the eager-loading needs to be set at a higher level that's aware of every database query that will be run during the unit of work.</p>
<p>Am I missing something painfully obvious here? It feels like there should be a way to specify what entities should be eager-loaded on a per-query basis as opposed to setting it globally for the entire datacontext...</p>
http://stackoverflow.com/questions/26971/nhibernate-vs-linq-to-sql/26991#2699132Answer by Kevin Pang for NHibernate vs LINQ to SQLKevin Pang2008-08-25T21:51:07Z2009-11-23T23:32:13Z<p>I'm assuming by LINQ you're referring to LINQ to SQL...</p>
<p>LINQ to SQL forces you to use the table-per-class pattern. The benefits of using this pattern are that it's quick and easy to implement and it takes very little effort to get your domain running based on an existing database structure. For simple applications, this is perfectly acceptable (and oftentimes even preferable), but for more complex applications devs will often suggest using a <a href="http://en.wikipedia.org/wiki/Domain%5Fdriven%5Fdesign" rel="nofollow">domain driven design</a> pattern instead (which is what NHibernate facilitates).</p>
<p>The problem with the table-per-class pattern is that your database structure has a direct influence over your domain design. For instance, let's say you have a Customers table with the following columns to hold a customer's primary address information:</p>
<ul>
<li>StreetAddress</li>
<li>City</li>
<li>State</li>
<li>Zip</li>
</ul>
<p>Now, let's say you want to add columns for the customer's mailing address as well so you add in the following columns to the Customers table:</p>
<ul>
<li>MailingStreetAddress</li>
<li>MailingCity</li>
<li>MailingState</li>
<li>MailingZip</li>
</ul>
<p>Using LINQ to SQL, the Customer object in your domain would now have properties for each of these eight columns. But if you were following a domain driven design pattern, you would probably have created an Address class and had your Customer class hold two Address properties, one for the mailing address and one for their current address.</p>
<p>That's a simple example, but it demonstrates how the table-per-class pattern can lead to a somewhat smelly domain. In the end, it's up to you. Again, for simple apps that just need basic CRUD (create, read, update, delete) functionality, LINQ to SQL is ideal because of simplicity. But personally I like using NHibernate because it facilitates a cleaner domain.</p>
<p>Edit: @lomaxx - Yes, the example I used was simplistic and could have been optimized to work well with LINQ to SQL. I wanted to keep it as basic as possible to drive home the point. The point remains though that there are several scenarios where having your database structure determine your domain structure would be a bad idea, or at least lead to suboptimal OO design.</p>
http://stackoverflow.com/questions/1721704/how-best-to-retrieve-and-update-these-objects-in-nhibernate/1746072#17460721Answer by Kevin Pang for How best to retrieve and update these objects in NHibernate?Kevin Pang2009-11-17T01:41:47Z2009-11-17T01:47:32Z<ol>
<li>Query the database (using HQL, Criteria, SQL query, etc.) for the UserRating you want to modify</li>
<li>Change the UserRating however you like</li>
<li>Commit your changes </li>
</ol>
<p>In pseudocode, this would look something like this:</p>
<pre><code>using (ITransaction transaction = session.BeginTransaction())
{
UserRating userRating = userRatingRepository.GetUserRating(userId, itemId);
userRating.Rating = 5;
transaction.Commit();
}
</code></pre>
<p>This will involve two queries (as opposed to the one query "old school" solution). The first query (which happens in the GetUserRating call) will run a SQL "SELECT" to grab the UserRating from the database. The second query (which happens on transaction.Commit) will update the UserRating in the database.</p>
<p>GetUserRating (using Criteria) would look something like this:</p>
<pre><code>public IList<UserRating> GetUserRating(int userId, int itemId)
{
session.CreateCriteria(typeof (UserRating))
.Add(Expression.Eq("UserId", userId))
.Add(Expression.Eq("ItemId", itemId))
.List<UserRating>();
}
</code></pre>
http://stackoverflow.com/questions/1738929/nhibernate-errors-in-named-queries0NHibernate "Errors in named queries"Kevin Pang2009-11-15T21:34:56Z2009-11-15T22:28:06Z
<p>I have the following named SQL query defined:</p>
<pre><code><sql-query name="ItemSearch">
<return class="ItemSearchResult">
<return-property name="Item" column="ItemId" />
<return-property name="Distance" column="Distance" />
</return>
SELECT
Items.*,
dbo.DistanceBetween(Latitude, Longitude, :lat, :long) AS Distance
FROM Items
WHERE Contains(Name, :keywords)
ORDER BY Distance ASC
</sql-query>
</code></pre>
<p>Whenever I try to run my application, I get the generic error "Errors in named queries: {ItemSearch}". Is there something obviously wrong here?</p>
<p>The ItemSearchResult class is a very simple wrapper class that looks like this:</p>
<pre><code>public class ItemSearchResult
{
public Item Item {get; set;}
public double Distance {get; set;}
}
</code></pre>
http://stackoverflow.com/questions/1724105/javascript-vs-jquery/1724193#17241931Answer by Kevin Pang for Javascript vs jQuery?Kevin Pang2009-11-12T18:00:14Z2009-11-12T18:00:14Z<p><strong>No</strong></p>
<p>While you can certainly <em>use</em> jQuery without knowing JavaScript, there's absolutely no way to become an "expert" at jQuery without knowing JavaScript.</p>
<p>You'll be fine without a JavaScript background if you just need basic animations, event handlers, and DOM traversal. But being an "expert" at jQuery presumably requires more than that, in which case you'll need to learn JavaScript in order to write clean, elegant, and maintainable jQuery code.</p>
http://stackoverflow.com/questions/377117/asp-net-mvc-routing-question5ASP.NET MVC Routing QuestionKevin Pang2008-12-18T07:29:05Z2009-11-06T07:57:18Z
<p>I must be dense. After asking several questions on StackOverflow, I am still at a loss when it comes to grasping the new routing engine provided with ASP.NET MVC. I think I've narrowed down the problem to a very simple one, which, if solved, would probably allow me to solve the rest of my routing issues. So here it is:</p>
<p>How would you register a route to support a Twitter-like URL for user profiles?</p>
<blockquote>
<p><code>www.twitter.com/username</code></p>
</blockquote>
<p>Assume the need to also support:</p>
<ul>
<li><p>the default <code>{controller}/{action}/{id}</code> route. </p></li>
<li><p>URLs like:</p>
<blockquote>
<p><code>www.twitter.com/login</code><br />
<code>www.twitter.com/register</code></p>
</blockquote></li>
</ul>
<p>Is this possible?</p>
http://stackoverflow.com/questions/778607/returnurl-in-asp-net-mvc2ReturnUrl in ASP.NET MVCKevin Pang2009-04-22T18:42:35Z2009-11-04T02:41:43Z
<p>I currently have a login link on my application that looks something like this:</p>
<pre><code><a href="/login?ReturnUrl=" + <%= Request.RawUrl %>>Login</a>
</code></pre>
<p>I want to handle the POST command on the login page in the controller action below:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Login(string returnUrl)
{
// Authenticate user
return Redirect(returnUrl);
}
</code></pre>
<p>The problem here is if the RawUrl is something with multiple url parameters like "somepage?param1=1&param2=2&param3=3", then the returnUrl that gets passed into the Login action is truncated after the first ampersand: "somepage?param1=1".</p>
<p>I've tried UrlEncoding the RawUrl but that seem to make any difference. It seems that the ASP.NET MVC framework here is UrlDecoding the url params before mapping them to the controller action parameters, which ends up stripping off the additional url parameters I want to see in my returnUrl parameter.</p>
<p>Is there any way around this? I know I could just use Request.Path and parse out the values I need, but I thought I'd see if there was a cleaner approach first.</p>
http://stackoverflow.com/questions/295095/how-do-i-set-a-textboxs-value-using-an-anchor-with-jquery5How do I set a textbox's value using an anchor with jQuery?Kevin Pang2008-11-17T08:30:20Z2009-11-03T11:26:59Z
<p>I have a textbox whose value I want to set based on the inner text of an anchor tag. In other words, when someone clicks on this anchor:</p>
<pre><code><a href="javascript:void();">Blah</a>
</code></pre>
<p>I want my textbox to populate with the text "Blah". Here is the code I am currently using:</p>
<pre><code><script type="text/javascript">
$(document).ready(function(){
$("a.clickable").click(function(event){
$("input#textbox").val($(this).html());
});
});
</script>
</code></pre>
<p>And in my html there is a list of anchor tags with the class "clickable" and one textbox with the id "textbox".</p>
<p>I've substituted the code above with code to just show a javascript alert with $(this).html() and it seems to show the correct value. I have also changed the $(this).html() to be a hardcoded string and it setes the textbox value correctly. But when I combine them the textbox simply clears out. What am I doing wrong?</p>
http://stackoverflow.com/questions/388483/how-do-you-create-a-dropdownlist-from-an-enum-in-asp-net-mvc6How do you create a dropdownlist from an enum in ASP.NET MVC?Kevin Pang2008-12-23T09:25:43Z2009-10-25T21:27:03Z
<p>I'm trying to use the Html.DropDownList extension method but can't figure out how to use it with an enumeration.</p>
<p>Let's say I have an enumeration like this:</p>
<pre><code>public enum ItemTypes
{
Movie = 1,
Game = 2,
Book = 3
}
</code></pre>
<p>How do I go about creating a dropdown with these values using the Html.DropDownList extension method? Or is my best bet to simply create a for loop and create the html elements manually?</p>
http://stackoverflow.com/questions/412022/nhibernate-query-with-distance-calculation-stored-proc1NHibernate query with distance calculation stored procKevin Pang2009-01-05T00:59:22Z2009-10-21T23:08:44Z
<p>I have a stored procedure in my database that calculates the distance between two lat/long pairs. This stored procedure is called "DistanceBetween". I have a SQL statement allows a user to search for all items in the Items table ordered by the distance to a supplied lat/long coordinate. The SQL statement is as follows:</p>
<pre><code>SELECT Items.*, dbo.DistanceBetween(@lat1, @lat2, Latitude, Longitude) AS Distance
FROM Items
ORDER BY Distance
</code></pre>
<p>How do I go about using this query in NHibernate? The Item class in my domain doesn't have a "Distance" property since there isn't a "Distance" column in my Items table. The "Distance" property really only comes into play when the user is performing this search.</p>
http://stackoverflow.com/questions/1360078/asp-net-mvc-validation-of-viewstate-mac-failed0ASP.NET MVC Validation of ViewState MAC failedKevin Pang2009-09-01T00:46:59Z2009-10-16T11:35:06Z
<p>After publishing a new build of my ASP.NET MVC web application, I often see this exception thrown when browsing to the site:</p>
<p>System.Web.Mvc.HttpAntiForgeryException: A required anti-forgery token was not supplied or was invalid. ---> System.Web.HttpException: Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster. ---> System.Web.UI.ViewStateException: Invalid viewstate.</p>
<p>This exception will continue to occur on each page I visit in my web application until I close out of Firefox. After reopening Firefox, the site works perfectly. Any idea what's going on?</p>
<p>Additional notes:</p>
<ol>
<li>I am not using any ASP.NET web controls (there are no instances of runat="server" in my application)</li>
<li>If I take out the <%= Html.AntiForgeryToken %> from my pages, this problem seems to go away</li>
</ol>
http://stackoverflow.com/questions/1558791/unit-testing-linq-2-sql-lazy-loaded-properties1Unit testing Linq 2 Sql lazy-loaded propertiesKevin Pang2009-10-13T07:59:31Z2009-10-13T22:58:53Z
<p>Lets say I have a Customers table and an Orders table with a one-to-many association (one customer can have multiple orders). If I have some code that I wish to unit test that accesses a specific customer's orders via lazy-loading (e.g. a call to customer.Orders), how do I mock / stub that call out so that it doesn't hit the database?</p>
<p>Edit:</p>
<p>To be more clear, let's use a more concrete example. Let's say I want to return all the orders for a particular customer. I could write it like so using the auto-generated lazy-loading properties Linq 2 Sql provides:</p>
<pre><code>Customer customer = customerRepository.GetCustomerById(customerId);
return customer.Orders;
</code></pre>
<p>However, unit testing this is a bit tough. I can mock out the call to GetCustomerById, but I can't (as far as I can tell) mock out the call to Orders. The only way I can think of to unit test this would be to either a) connect to a database (which would slow down my tests and be fragile) or b) don't use lazy-load properties.</p>
<p>Not using lazy-load properties, I would probably rewrite the above as this:</p>
<pre><code>return orderRepository.GetOrdersByCustomerId(customerId);
</code></pre>
<p>This definitely works, but it feels awkward to completely ignore lazy-load properties simply for unit-testing.</p>
http://stackoverflow.com/questions/26509/what-workshops-user-groups-conventions-do-you-attend1What workshops / user groups / conventions do you attend?Kevin Pang2008-08-25T17:55:58Z2009-10-13T18:33:21Z
<p>I haven't been to enough of these "live" events to really determine which, if any, are worth the time / money. Which ones do you attend and why?</p>
http://stackoverflow.com/questions/1547312/automatically-calculated-properties-in-linq-2-sql-entities2Automatically Calculated Properties in Linq 2 Sql Entities?Kevin Pang2009-10-10T07:39:04Z2009-10-10T09:10:14Z
<p>Let's say I have a table in my database called Orders that has the following columns:</p>
<p>OrderId
OrderDate
CancelDate
ShipDate
LastActionDate</p>
<p>I want LastActionDate to always be the latest date of OrderDate, CancelDate, and ShipDate. What's the best way to accomplish this? Is there a way to handle the OnChanged event of those three dates so that the LastActionDate can be recalculated whenever those properties change? Or is there some built-in Linq 2 Sql magic that handles this scenario? Or do I just have to make sure to set the LastActionDate whenever I change any of the three dates?</p>
http://stackoverflow.com/questions/1511058/lucene-or-sql-fulltext/1511105#15111051Answer by Kevin Pang for lucene, or sql fulltext?Kevin Pang2009-10-02T18:24:53Z2009-10-02T18:24:53Z<p>If your primary concern is getting it up and running quickly and easily, then SQL fulltext search is definitely the way to go.</p>
<p>Lucene.NET has its advantages, but it is by no means a walk in the park to set up correctly. The documentation is a bit lacking and there are a very limited number of examples on the web.</p>
http://stackoverflow.com/questions/134956/how-do-you-perform-address-validation9How do you perform address validation?Kevin Pang2008-09-25T18:09:12Z2009-09-29T03:06:46Z
<p>Is it even possible to perform address (physical, not e-mail) validation? It seems like the sheer number of address formats, even in the US alone, would make this a fairly difficult task. On the other hand, it seems like a task that would be necessary for several business requirements.</p>
http://stackoverflow.com/questions/235233/asp-net-mvc-should-business-logic-exist-in-controllers11ASP.NET MVC - Should business logic exist in controllers?Kevin Pang2008-10-24T20:57:02Z2009-09-28T11:31:21Z
<p>Derik Whitaker posted an <a href="http://devlicio.us/blogs/derik_whittaker/archive/2008/10/22/how-is-interacting-with-your-data-repository-in-your-controller-different-or-better-than-doing-it-in-your-code-behind.aspx" rel="nofollow">article</a> a couple of days ago that hit a point that I've been curious about for some time: <strong>should business logic exist in controllers?</strong></p>
<p>So far all the ASP.NET MVC demos I've seen put repository access and business logic in the controller. Some even throw validation in there as well. This results in fairly large, bloated controllers. Is this really the way to use the MVC framework? It seems that this is just going to end up with a lot of duplicated code and logic spread out across different controllers.</p>
http://stackoverflow.com/questions/61520/what-are-the-pros-and-cons-of-object-databases6What are the pros and cons of object databases?Kevin Pang2008-09-14T18:04:57Z2009-09-25T20:58:32Z
<p>There is a lot of information out there on object-relational mappers and how to best avoid impedance mismatch, all of which seem to be moot points if one were to use an object database. My question is why isn't this used more frequently? Is it because of performance reasons or because object databases cause your data to become proprietary to your application or is it due to something else? </p>
http://stackoverflow.com/questions/333340/implementing-a-search-page-using-url-parameters-in-asp-net-and-asp-net-mvc3Implementing a search page using url parameters in ASP.NET and ASP.NET MVCKevin Pang2008-12-02T08:26:11Z2009-09-23T13:13:39Z
<p>Let's say I have a search page called Search.aspx that takes a search string as a url parameter ala Google (e.g. Search.aspx?q=This+is+my+search+string).</p>
<p>Currently, I have an asp:TextBox and an asp:Button on my page. I'm handling the button's OnClick event and redirecting in the codebehind file to Search.aspx?q=
<p>What about with ASP.NET MVC when you don't have a codebehind to redirect with? Would you create a GET form element instead that would post to Search.aspx? Or would you handle the redirect in some other manner (e.g. jQuery event attached to the button)?</p>
http://stackoverflow.com/questions/398760/whats-the-difference-between-using-jquerys-onclick-and-the-onclick-attribute3What's the difference between using jQuery's onclick and the onclick attribute?Kevin Pang2008-12-29T21:38:55Z2009-09-10T23:59:11Z
<p>What's the difference between the following two pieces of HTML (apologies if there are any typos as I'm typing this freehand)?</p>
<p>Using jQuery:</p>
<pre><code><script type="text/javascript">
$(document).ready(function() {
$("#clickme").click(function() {
alert("clicked!");
});
});
</script>
<a id="clickme" href="javascript:void(0);">click me</a>
</code></pre>
<p>Not using jQuery:</p>
<pre><code><a id="clickme" href="javascript:void(0);" onclick="alert('clicked!');">click me</a>
</code></pre>
http://stackoverflow.com/questions/1402118/asp-net-mvc-am-i-doing-it-right/1402220#14022200Answer by Kevin Pang for ASP.NET MVC: Am I doing it right?Kevin Pang2009-09-09T21:33:02Z2009-09-09T21:33:02Z<p>Yes, you're doing it right. ASP.NET MVC isn't an improvement over classic web forms in every respect. It has its advantages and disadvantages ("tag soup", as you've discovered, being one of the disadvantages).</p>
<p>There are a few ways to alleviate the pain (moving as much logic into the model, HTML helpers, partial views, etc.), but it's difficult to avoid.</p>
http://stackoverflow.com/questions/649510/can-i-register-a-it-domain-name-for-a-company-outside-of-italy0Can I register a .it domain name for a company outside of Italy?Kevin Pang2009-03-16T07:05:31Z2009-09-09T21:21:52Z
<p>I've got a domain name that would work nicely with a .it domain name (e.g. redd.it). This is for a web application I'm building, which if it ever generates revenue will be for a company in the US. Is this allowed?</p>
http://stackoverflow.com/questions/1381916/or-mapping-tool/1381926#13819261Answer by Kevin Pang for OR Mapping toolKevin Pang2009-09-04T23:20:39Z2009-09-04T23:20:39Z<p>In no particular order:</p>
<ul>
<li>NHibernate </li>
<li>Linq 2 Sql </li>
<li>Subsonic</li>
</ul>
http://stackoverflow.com/questions/1837601/nhibernate-many-to-many-is-deleting-all-associations-before-inserting/1837632#1837632Comment by Kevin Pang on NHibernate Many-To-Many Is Deleting All Associations Before InsertingKevin Pang2009-12-03T04:37:26Z2009-12-03T04:37:26ZPerfect. I added an identity column to my UserNetworks table and switched to an IdBag and it worked just fine. Thanks!http://stackoverflow.com/questions/1837601/nhibernate-many-to-many-is-deleting-all-associations-before-inserting/1837636#1837636Comment by Kevin Pang on NHibernate Many-To-Many Is Deleting All Associations Before InsertingKevin Pang2009-12-03T04:32:14Z2009-12-03T04:32:14ZI do have one side with inverse="true". Also, cascade="save-update" is clearly defined on both bags...http://stackoverflow.com/questions/1794159/fast-keyword-lookup/1794186#1794186Comment by Kevin Pang on Fast keyword lookupKevin Pang2009-11-25T04:43:54Z2009-11-25T04:43:54Z@Jason Most likely, but you don't know that for sure.http://stackoverflow.com/questions/1794159/fast-keyword-lookup/1794186#1794186Comment by Kevin Pang on Fast keyword lookupKevin Pang2009-11-25T02:01:37Z2009-11-25T02:01:37Z@Jason - True for subsequent hits. However, the first hit will be slower.http://stackoverflow.com/questions/26971/nhibernate-vs-linq-to-sql/26991#26991Comment by Kevin Pang on NHibernate vs LINQ to SQLKevin Pang2009-11-23T23:33:52Z2009-11-23T23:33:52ZYou guys are right. What I should have said was "table-per-class", not "Active Record". Updated answer to fix that.http://stackoverflow.com/questions/412022/nhibernate-query-with-distance-calculation-stored-proc/1601538#1601538Comment by Kevin Pang on NHibernate query with distance calculation stored procKevin Pang2009-11-04T17:47:22Z2009-11-04T17:47:22ZThanks Abel. I think I'll go with option #3, but I had one question. Instead of having the ResultSetEntityClassHere have Id, Latitude, and Longitude properties, would it be possible to have it simply have an Item property and a Distance property? If so, is there a way to adjust that sql-query configuration to correctly map the Item property? If not, I'll just add whatever columns I need, but it would be easier to have the entire Item object rather than pick and choose which columns I want this query to return.http://stackoverflow.com/questions/412022/nhibernate-query-with-distance-calculation-stored-proc/423176#423176Comment by Kevin Pang on NHibernate query with distance calculation stored procKevin Pang2009-11-04T17:07:12Z2009-11-04T17:07:12ZOr will I need to use something like AliasToBean?http://stackoverflow.com/questions/412022/nhibernate-query-with-distance-calculation-stored-proc/423176#423176Comment by Kevin Pang on NHibernate query with distance calculation stored procKevin Pang2009-11-04T17:05:22Z2009-11-04T17:05:22ZYes, that works, but the result is a list of Item objects which don't have a Distance property. How do I get a list of items with the distances in them? Could I create a new class (e.g. ItemSearchResult), which would basically be the Item class plus a Distance property and return a list of those? If so, how do I get NHiberante to map to that object? Could I just replace <Item> with <ItemSearchResult> in your code and it would figure it out?http://stackoverflow.com/questions/412022/nhibernate-query-with-distance-calculation-stored-procComment by Kevin Pang on NHibernate query with distance calculation stored procKevin Pang2009-10-21T23:39:26Z2009-10-21T23:39:26Z@Abel - Correct. Great answer though, thanks for responding. I would mark you as the answer if I could. :-(http://stackoverflow.com/questions/412022/nhibernate-query-with-distance-calculation-stored-procComment by Kevin Pang on NHibernate query with distance calculation stored procKevin Pang2009-10-14T20:01:00Z2009-10-14T20:01:00ZPaco - Could you elaborate on how to do that?http://stackoverflow.com/questions/1558791/unit-testing-linq-2-sql-lazy-loaded-properties/1559656#1559656Comment by Kevin Pang on Unit testing Linq 2 Sql lazy-loaded propertiesKevin Pang2009-10-14T00:31:32Z2009-10-14T00:31:32ZMakes sense. I figured that might be the case, but was hoping that it wasn't and that I was just missing something. I guess I'll just ignore the lazy-loading features for now for the sake of unit testing.http://stackoverflow.com/questions/1558791/unit-testing-linq-2-sql-lazy-loaded-properties/1559656#1559656Comment by Kevin Pang on Unit testing Linq 2 Sql lazy-loaded propertiesKevin Pang2009-10-13T22:54:53Z2009-10-13T22:54:53ZIn other words, don't use the automatically generated lazy-load properties? Instead of calling customer.Orders (where customer is of type Customer, created by Linq 2 Sql) you would create an OrderRepository that implements IOrderRepository and stub that out? That's what I've been doing, but it seems a waste to completely ignore using the lazy-loading features of Linq 2 Sql...http://stackoverflow.com/questions/1547312/automatically-calculated-properties-in-linq-2-sql-entities/1547326#1547326Comment by Kevin Pang on Automatically Calculated Properties in Linq 2 Sql Entities?Kevin Pang2009-10-10T08:39:23Z2009-10-10T08:39:23ZThat's good in theory, but there are situations where these auto-calculated values come in handy (e.g. for calculating subtotals on orders for instance, or if the calculation is rather intense and not suitable for on-the-fly calculations). What do you do then?http://stackoverflow.com/questions/1419713/mocking-vs-faking-when-to-use-what/1419773#1419773Comment by Kevin Pang on Mocking vs. faking, when to use what?Kevin Pang2009-09-14T22:03:59Z2009-09-14T22:03:59ZAyende (creator of Rhino Mocks) recently announced that he's going to ditch the Mock vs Stub and just make everything a Fake in the next version of Rhino Mocks. Some would argue that you gain more knowledge knowing that something is a Stub instead of a Mock, but that's getting a bit nit picky. If you don't care, just use Mocks all the time and don't assert their assumptions. It'll save you some headache of having to figure out which to use.http://stackoverflow.com/questions/1242484/get-real-ip-address-with-vb-net/1280657#1280657Comment by Kevin Pang on Get "real" IP address with vb .net?Kevin Pang2009-08-14T23:42:02Z2009-08-14T23:42:02ZNot familiar with php, but does the script you use depend on the HTTP headers to retrieve the IP? If so, it is possible for the user to manipulate these to specify whatever IP address they want. It may not be a huge concern, but it's something to take into consideration.