2
votes
4answers
316 views
Constructor parameters for controllers without a DI container for ASP.NET MVC
Does anyone have any code examples on how to create controllers that have parameters other than using a Dependency Injection Container?
I see plenty of samples with using containers like S …
5
votes
15answers
1k views
Error when using extension methods in C#
I came across an issue that makes me think there is bug in the 3.0 framework. When I try to use extension methods I get the following error:
Missing compiler required member 'System.Runtime.Compil …
0
votes
2answers
116 views
How are you passing more than one object to a view? [closed]
The typical way to pass an object to a view is to pass its type through the viewpage object. Unfortunately, this only allows you to send one object to the view.
E.g.:
public partial …
-1
votes
Constructor parameters for controllers without a DI container for ASP.NET MVC
Creative approach LOL. I would suspect that MS will eventually add a easier mechanism for doing this if we didn't want to depend on a third party open source codebase (DI container).
…
1
vote
Is it just me or are interfaces overused?
I think you can overuse interfaces, however the reason for using them should be to decouple the components in a system. Even in small systems tight coupling between components is not a good thing ( …
0
votes
Error when using extension methods in C#
I have the target framework set to 3.5 in the project properties.
…
0
votes
Error when using extension methods in C#
Yup. When I look under references an right click on System.Core and go to properties, it says "3.5.0.0" in the version column.
…
0
votes
Error when using extension methods in C#
Yeah I tried that, but here is the interesting thing. I just created the same static class with the extension method in the web project and no compile errors. It only fails to compile in a MS Unit …
