Kevin Pang

6,689
reputation
439 views

Registered User

name Kevin Pang
member for 1 year
seen 3 hours ago
website
location Irvine, CA
age 27

ASP.NET developer. ALT.NET supporter. Pragmatic programmer. Published writer.

1d
comment Best way to architect JavaScript UI code with ASP.NET in terms of reuse and logic encapulation?
That's fine, I was just pointing out that there are alternatives if you're in a position to either wait it out or make a major infrastructure change in your codebase. You didn't specify whether this was a greenfield or brownfield project or how much leverage you had in architectural decisions, so I threw out a couple suggestions (ASP.NET 4.0 and ASP.NET MVC).
1d
answered Best way to architect JavaScript UI code with ASP.NET in terms of reuse and logic encapulation?
Dec
10
awarded  Notable Question
Dec
9
awarded  Popular Question
Dec
8
answered Setting UL to be visible from code-behind not working
Dec
8
revised Which ORM Supports this
deleted 41 characters in body
Dec
8
answered Which ORM Supports this
Dec
7
accepted How do you unit test web page authorization using ASP.NET MVC?
Dec
6
awarded  Mortarboard
Dec
3
answered What are some good Entity Framework Alternatives
Dec
3
comment NHibernate Many-To-Many Is Deleting All Associations Before Inserting
Perfect. I added an identity column to my UserNetworks table and switched to an IdBag and it worked just fine. Thanks!
Dec
3
asked NHibernate Many-To-Many Is Deleting All Associations Before Inserting
Dec
1
awarded  Tumbleweed
Nov
30
answered How can i force Nhibernate transaction to fail ?
Nov
25
awarded  Popular Question
Nov
25
comment Fast keyword lookup
@Jason Most likely, but you don't know that for sure.
Nov
25
comment Fast keyword lookup
@Jason - True for subsequent hits. However, the first hit will be slower.
Nov
25
answered Fast keyword lookup
Nov
24
revised prevent child tables from being populated in a linq query
spelling
Nov
24
awarded  Good Answer
Nov
24
awarded  Nice Answer
Nov
24
answered Difficult lessons for new programmers?
Nov
24
asked Linq 2 Sql Eager Loading
Nov
23
comment NHibernate vs LINQ to SQL
You guys are right. What I should have said was "table-per-class", not "Active Record". Updated answer to fix that.
Nov
23
revised NHibernate vs LINQ to SQL
Edited to fix misuse of the term "Active Record"; added 2 characters in body
Nov
19
awarded  Famous Question
Nov
18
awarded  Notable Question
Nov
17
revised How best to retrieve and update these objects in NHibernate?
added 17 characters in body
Nov
17
answered How best to retrieve and update these objects in NHibernate?
Nov
15
asked NHibernate “Errors in named queries”
Nov
12
answered Javascript vs jQuery?
Nov
4
comment NHibernate query with distance calculation stored proc
Thanks 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.
Nov
4
comment NHibernate query with distance calculation stored proc
Or will I need to use something like AliasToBean?
Nov
4
comment NHibernate query with distance calculation stored proc
Yes, 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?
Oct
21
comment NHibernate query with distance calculation stored proc
@Abel - Correct. Great answer though, thanks for responding. I would mark you as the answer if I could. :-(
Oct
19
awarded  Popular Question
Oct
14
comment NHibernate query with distance calculation stored proc
Paco - Could you elaborate on how to do that?
Oct
14
comment Unit testing Linq 2 Sql lazy-loaded properties
Makes 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.
Oct
13
revised Unit testing Linq 2 Sql lazy-loaded properties
added 912 characters in body; added 19 characters in body
Oct
13
comment Unit testing Linq 2 Sql lazy-loaded properties
In 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...
Oct
13
asked Unit testing Linq 2 Sql lazy-loaded properties
Oct
12
awarded  Popular Question
Oct
10
comment Automatically Calculated Properties in Linq 2 Sql Entities?
That'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?
Oct
10
asked Automatically Calculated Properties in Linq 2 Sql Entities?
Oct
5
accepted lucene, or sql fulltext?
Oct
2
answered lucene, or sql fulltext?
Sep
21
awarded  Popular Question
Sep
14
comment Mocking vs. faking, when to use what?
Ayende (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.
Sep
9
answered ASP.NET MVC: Am I doing it right?
Sep
4
answered OR Mapping tool