882 reputation
825
bio website
location
age
visits member for 3 years, 6 months
seen 9 hours ago
stats profile views 123

Jun
15
accepted Generate test database for integration tests
Jun
15
answered Generate test database for integration tests
Jun
13
comment Entity Framework 5, Code First Many to Many foreign key mapping with extra property
I didn't need the data annotations.
Jun
12
comment how to make a wizard with ASP.Net MVC
The trouble with a design based on loading all the HTML at once is that it doesn't scale. If your page gets too big then you won't be optimising, you'll be rebuilding.
Jun
12
comment how to make a wizard with ASP.Net MVC
I believe this is how some ASP.net Web Forms controls work. They render all the steps HTML to the page and all the step data in view state. Gets really slow because the pages get huge.
Jun
12
comment how to make a wizard with ASP.Net MVC
You don't need nulls if each step has its own table in the database.
Jun
12
asked Generate test database for integration tests
Jun
12
comment Fluent Validation vs. Data Annotations
I agree that this type of question is useful but the answers below seem more like opinions to me and not facts.
Jun
11
comment Make Visual Studio 'Add Controller' use Repository Pattern
Do you know where there's a list of the Scaffolding commands available?
Jun
11
accepted Make Visual Studio 'Add Controller' use Repository Pattern
Jun
11
asked Make Visual Studio 'Add Controller' use Repository Pattern
Jun
10
comment How can async only work on one thread?
What is the TPL?
Jun
10
comment How can async only work on one thread?
'a delegate that executes the given work on a separate (probably pooled) thread' - that's exactly what its supposed to not do!
Jun
10
comment How can async only work on one thread?
@James I don't think that articles answers the question. It does hint at the answer with the following cryptic statement, 'The method runs on the current synchronization context and uses time on the thread only when the method is active.'
Jun
10
comment How can async only work on one thread?
I don't understand any async code. It doesn't make sense. If I have some code that awaits on a file being loaded, how does the thread know when the file has finished loading?
Jun
10
asked How can async only work on one thread?
Jun
6
revised Run script when AngularJS form is invalid
added 25 characters in body
Jun
6
comment Run script when AngularJS form is invalid
I've updated the question.
Jun
6
revised Run script when AngularJS form is invalid
added 209 characters in body
Jun
6
accepted Get query string using Angularjs