445 reputation
1519
bio website
location Chicago, IL
age 36
visits member for 2 years, 3 months
seen yesterday
stats profile views 48

I'm a software developer interested in coding and development best practices.


May
9
accepted Bad idea to manually edit a scaffolded view?
May
9
comment Bad idea to manually edit a scaffolded view?
Both you and Thiago gave satisfactory (and similar) answers, but you posted first and also went into a little more detail about my core concern, so you get the accepted answer. Thanks!
May
8
comment Bad idea to manually edit a scaffolded view?
I agree that using a ViewModel can definitely be a good thing, since it gives even more separation between the View and your entity class. But should you go that route, you're back to handling some of the behind-the-scenes plumbing to link up the ViewModel with your entity class and related data access. A library such as AutoMapper takes a lot of the pain out of that, but it's still not as simple as letting the MvcScaffolder do nearly all the setup for you. That link is definitely a worthfile read, though. Thanks!
May
8
comment Bad idea to manually edit a scaffolded view?
@ywm - by "scaffolding", do you mean the generated results of the scaffolding? Yes, I have edited the View that the scaffolding built for me, and it works just fine. I'm not clear on whether that's a good idea to do, though.
May
8
asked Bad idea to manually edit a scaffolded view?
May
6
awarded  Popular Question
May
3
awarded  Critic
May
3
awarded  Informed
May
3
revised How to read a class parameter using Caché SQL?
Added a small bit of clarification (adding the "Caché"
May
3
comment How to read a class parameter using Caché SQL?
Looks like my flagging this for moderation worked and got this reopened. I slightly edited the title and question to make it clearer that this isn't a generic SQL question.
May
3
suggested suggested edit on How to read a class parameter using Caché SQL?
May
2
comment How to read a class parameter using Caché SQL?
I'm surprised and disappointed to see this mark closed - it seems we see that happen every now and again when people don't understand the question is for InterSystems Caché. This is probably a side effect of it being such a niche database product (and possibly the only reference to "Caché" being in the tags, making the question sound really generic). The question here seems like a perfectly acceptable question for the Caché database, but I don't have enough reputation to vote to reopen this.
Apr
30
comment MVC.NET 2 with iPad
Maybe it's related to the problem I ran into in this question? I wasn't working with ASP.NET MVC, but the underlying problem (ASP.NET not recognizing Safari as being javascript-capable) is causing your issue?
Apr
16
awarded  Tumbleweed
Apr
9
asked How to alter the scaffolding output folder?
Apr
9
comment How to change project and folder where MvcScaffolding generates controllers, views and repositories
The -Folder option no longer appears to be a part of MvcScaffolding. I can't seem to find the proper way to do this either...
Mar
29
accepted Is setting up a fake repository for a fake web service proxy class a good idea?
Mar
29
comment Is setting up a fake repository for a fake web service proxy class a good idea?
I think I see what you're saying. If I'm following you, I shouldn't need to create a fake repository and a fake proxy at the same time, because I'm either going to be unit testing my client-side code, in which case I just need to feed it dummy data (via the fake repository), or I'll be unit testing my service proxy, which should be completely outside the scope of this web app. If I need to fake a call to the proxy when unit testing my client app, a mocking framework is what I should be considering for that point. Hopefully, I'm not misstating anything here. Thanks a bunch!
Mar
28
comment Is setting up a fake repository for a fake web service proxy class a good idea?
Thanks for the answer - please see my update above for extra context on what I'm asking. Perhaps my thinking on the fake proxy class is backwards?
Mar
28
revised Is setting up a fake repository for a fake web service proxy class a good idea?
Added extra content explaining my question