Tomas Lycken
|
Registered User
|
|
8m |
awarded | ● Popular Question |
|
7h |
comment |
Weird override problem with Fluent NHibernate and .NET 4 I looked at the source for System.Exception (see link below) and added the same attribute to FluentConfigurationException in my local copy, but it didn't help. Now that I read the error message again, it seems more like some other type is inheriting FluentConfigurationException, without the correct permissions, but I can't figure out where. Link to source: labs.developerfusion.co.uk/SourceViewer/… |
|
7h |
comment |
Weird override problem with Fluent NHibernate and .NET 4 OK - but this is a class defined in the FluentNHibernate assembly. Should I take this as a bug in FluentNHibernate (that I can fix in my own copy of the source) or as a problem in my implementation of FNH? |
|
8h |
revised |
Weird override problem with Fluent NHibernate and .NET 4 changed title |
|
8h |
asked | Weird override problem with Fluent NHibernate and .NET 4 |
|
8h |
revised |
How do I use Fluent NHibernate with .NET 4.0? Updated question with new problem. (No answers were given at this point) |
|
12h |
comment |
Storing a million images Well, you obviously don't have to create each folder, just because you're following this scheme. You could even have Year/Month/Day/Hour/Minute - decide how many levels of folders you need depending on how often the images are generated when the rate is the highest - and then just don't create folders that would be left empty. |
|
13h |
answered | Storing a million images |
|
13h |
asked | How do I use Fluent NHibernate with .NET 4.0? |
|
1d |
revised |
The ProxyFactoryFactory was not configured added 91 characters in body |
|
2d |
answered | Cannot get T4MVC to work with VS2010 and ASP.NET MVC 2 |
|
2d |
asked | Cannot get T4MVC to work with VS2010 and ASP.NET MVC 2 |
|
2d |
comment |
Does T4MVC work with Visual Studio 2010 Beta 2 and .Net 4? I'm having the same problem, but I can't seem to get it to work. When I build, I get the same message as you do about "namespace canot directly...", and when I open the generated .cs file it only says "Error generating code". Nothing I do seems to help... |
|
Dec 14 |
revised |
Importing text files with comments in MATLAB added 64 characters in body |
|
Dec 14 |
answered | Importing text files with comments in MATLAB |
|
Dec 14 |
revised |
Prefix search through list/dictionary using .NET StringDictionary? edited title |
|
Dec 14 |
comment |
Testing the User.IsInRole in MVC.NET what type is it saying is not implementing? I think you need to use the GenericPrincipal class rather than GenericIdentity, but I'm not sure. As I said, I have never really used RhinoMocks, so whenever I need to mock a user I just mock the IPrincipal interface. |
|
Dec 14 |
revised |
Testing the User.IsInRole in MVC.NET added 845 characters in body |
|
Dec 14 |
comment |
Testing the User.IsInRole in MVC.NET Sorry - the code I provided is for Moq. I have never actually worked with Rhino Mocks (which you answered in the comment to the original post that you're using), but I'll give it a try. Edit coming up... |
|
Dec 14 |
comment |
Testing the User.IsInRole in MVC.NET By the way, what mocking framework are you using? I just assumed Moq, but maybe it's Rhino or TypeMock? |
|
Dec 14 |
comment |
Testing the User.IsInRole in MVC.NET AH, sorry! The arguments to the .Expect() methods should of course be lambda expressions. I don't recognize the syntax SetupResult.For(...).Return(...), but it's probably the same thing there - you need a lambda. Try replacing fakeContext (in the code in your comment, not everywhere else) with ctx => ctx. If that doesn't work, try using the .Expect() methods I suggested instead. |
|
Dec 14 |
revised |
Testing the User.IsInRole in MVC.NET added 18 characters in body |
|
Dec 14 |
revised |
Testing the User.IsInRole in MVC.NET Added code example |
|
Dec 14 |
answered | Testing the User.IsInRole in MVC.NET |
|
Dec 14 |
comment |
ASP.NET MVC - PartialView Architectural question This is by far the simplest solution, but it has a couple of flaws: * "Magic strings" (well, maybe not that magic - but they're not strongly typed) * Redundant saving of the project status information in two places ( ViewData["StatusPartial"] and in the property of the model object) |
|
Dec 14 |
comment |
ASP.NET MVC - PartialView Architectural question This is a good modification of Chris's solution - however, it is likely that the view is already rendering other things about this project, and it seems redundant to have the status both as a property of the Project entity and as a separate property on the ViewModel. |
|
Dec 14 |
revised |
ASP.NET MVC - PartialView Architectural question edited title |
|
Dec 14 |
answered | ASP.NET MVC - PartialView Architectural question |
|
Dec 9 |
comment |
asp.net validators - stop validating on first failure Are you using webforms or mvc? Also, do you have some kind of library for client side validation, such as jQuery Validate or the MS library that comes with VS? |
|
Dec 9 |
answered | other ways to write this markup |
|
Dec 9 |
answered | How to style different hover colors for jquery dialog buttons |
|
Dec 7 |
comment |
Is there a way to get a ValidationSummary to work with client-side validators? Are you using any javascript for client validation? What library are you using? |
|
Dec 7 |
accepted | how to have fixed height divs using 960.gs? |
|
Dec 7 |
comment |
jquery: firefox cant find id tag but safari can?? Probably because safari didn't stop running the javascript just because one line fails. I'm no expert on how safari handles javascript links, but in Firefox any javascript that fails (for example trying to call a function on an undefined variable) will and nothing more will happen. Maybe Safari just goes to the next line and hopes for the best. |
|
Dec 7 |
answered | jquery: firefox cant find id tag but safari can?? |
|
Dec 7 |
answered | Excel Formula Null Value |
|
Dec 7 |
answered | how to have fixed height divs using 960.gs? |
|
Dec 7 |
answered | Is there a way to get a ValidationSummary to work with client-side validators? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Nov 17 |
awarded | ● Yearling |
|
Nov 15 |
comment |
Assignments, i.e. Code Kata, for Coding Dojos The OP specifically asked for non-fizzbuzz answers... |
|
Nov 15 |
answered | Assignments, i.e. Code Kata, for Coding Dojos |
|
Nov 15 |
comment |
Need help with web application settings Since these are two independent questions, you should really divide them up into two separate posts. Also, when you do that, you can add more descriptive titles that say something about the specific problems instead of just "web application settings". |
|
Nov 13 |
answered | How would you plan a “learn programming” curriculum for beginners? |
|
Nov 13 |
comment |
ASP.NET MVC route returning 404 without action Hm... That's odd. Can you post a screenshot of the routing debugger output= |
|
Nov 13 |
accepted | Add a simple route |
|
Nov 13 |
answered | Add a simple route |
|
Nov 9 |
comment |
How can I not repeat this code in jquery? It won't actually remove the repetition, but it'll reduce the number of code lines =) |
|
Nov 9 |
answered | How can I not repeat this code in jquery? |
|
Nov 9 |
awarded | ● Nice Answer |
