| bio | website | |
|---|---|---|
| location | Blumenau, Brazil | |
| age | 34 | |
| visits | member for | 1 year |
| seen | yesterday | |
| stats | profile views | 14 |
Yet another IT guy
|
Dec 11 |
comment |
Generic method that output string based on the classes properties Check these two questions started by me: stackoverflow.com/questions/13752373/… stackoverflow.com/questions/13635503/… See if you can devise solution from there. If not, shout it and I might try to implement it for you. |
|
Dec 11 |
comment |
NHibernate Query using QueryOver HQL Sorry, but it is not very clear what is the trouble. You have "UserrID" there. User with two Rs. You want the SQL to be translated to HQL, is that it? If it is, post it again, more clearly. Remove what is not needed, like CurrentSession and SetResultTransformer - or is that giving you trouble too? Also, it wouldn't hurt to post the code for the classes involved. |
|
Dec 11 |
comment |
C# compiler compiles .txt .obj .java files It's not surprising: it's a valid C# program. The compiler follows the "Do not judge a book by its cover" rule. The "compiler does not judge a file by its extension", or name. It checks its content and generates the exe file. Now it would be surprising if the contents of the file WERE NOT valid C# statements. |
|
Dec 7 |
comment |
Dynamically create members of interface It seems to have worked. |
|
Dec 7 |
comment |
Dynamically create members of interface I want to follow the DRY principle. This is just one view. I'll have more. The other view has 20 controls. But since I don't know much about reflection I decided to ask for help. I'm away from my developer machine now. As soon as I'm on it and I can test I'll tell you if it worked. Thank you anyway. |
|
Dec 4 |
comment |
SELECT TOP 1 …Some stuff… ORDER BY DES gives different result Assuming it's SQL Server, if you try "TOP 1 WITH TIES", what do you get as result? Also... Can you post the more of the SQL? Specially, the source (table) from Col1, Col2 and the ORDER BY? Finally, it wouldn't hurt to have some data. |
|
Dec 2 |
comment |
ValueObject Persistence in NHibernate / Fluent NHibernate I ended up doing just like you said: LawsuitType is an Entity. |
|
Dec 2 |
comment |
Generic function getting a generic parameter Thanks, that worked. I was really struggling. |
|
Dec 1 |
comment |
Generic function getting a generic parameter See my edit to see why I don't consider this an option. |
|
Dec 1 |
comment |
Generic function getting a generic parameter Error 1 - The type 'TId' cannot be used as type parameter 'TId' in the generic type or method 'ConsoleApplication1.Entity<TId>'. There is no boxing conversion or type parameter conversion from 'TId' to 'System.IEquatable<TId>' :( |
|
Nov 27 |
comment |
C# Name of class that references a property Well... If Jon Skeet says expressions trees are the only way to go, I'll probably leave it as it is. I'm already struggling with the reflection. Can't even imagine trying to wrap my head around expression trees. |
|
Nov 8 |
comment |
Active Directory group enumeration Glad I could help. Could you upvote the answer then? Thx |
|
Nov 5 |
comment |
Active Directory group enumeration Which .Net version are you using? AccountManagement is .Net 3.5, if I'm not mistaken. |
|
Oct 25 |
comment |
C# and Office integration I graduate in Computer Science 10 years ago, but I was mostly doing network related stuff. Recently I went back to developing. I'm doing some C# related stuff. Nothing big. I'm more comfortable/stronger with C#. But I'm willing to learn. And I'm not exactly sure about what you mean with "forms for the info processing". You mean the layout of the controls, etc? If so, no. |
|
Oct 16 |
comment |
Phone mapping with FluentNHibernate I think I found the answer here: blog.miraclespain.com/archive/2008/Mar-18.html |
|
Oct 3 |
comment |
ValueObject Persistence in NHibernate / Fluent NHibernate I'd prefer not to use an enum since I want to let some users dictate the values that are legal. |