Stefan Steinegger

9,281
reputation
666 views

Registered User

name Stefan Steinegger
member for 1 year
seen yesterday
website
location Switzerland
age 33
I'm working for a large enterprise software written in C# 3.0. I'm using NHibernate on SqlServer, RhinoMocks, Spring.Net.
1d
accepted How would you like an API to expose error handling?
Dec
12
accepted NHibernate -failed to lazily initialize a collection of role.
Dec
12
revised NHibernate -failed to lazily initialize a collection of role.
added 57 characters in body
Dec
12
comment NHibernate -failed to lazily initialize a collection of role.
I wouldn't do this, since opening a transaction for each call is bad practice. Transaction isolation is nor available, NHibernate cache is not useful anymore (every call returns a new instance), persistence ignorance is not possible, lazy loading not working anymore. In short: most advantages of using NHibernate is destroyed.
Dec
12
revised NHibernate -failed to lazily initialize a collection of role.
added 412 characters in body
Dec
12
revised NHibernate -failed to lazily initialize a collection of role.
added 807 characters in body
Dec
12
answered NHibernate -failed to lazily initialize a collection of role.
Dec
12
comment hex number of length 128 which is to be converted to binary in c#
There hasn't been a hexadecimal number before you created it using String.Format. Before it was binary. Just take it.
Dec
12
comment hex number of length 128 which is to be converted to binary in c#
foreach (byte b in HashValue): there you already have a list of bytes.
Dec
12
comment sorry guys, its hex number of 128 length which is to be converted to binary in c#
foreach (byte b in HashValue): there you already have a list of bytes. So where is the problem?
Dec
12
revised sorry guys, its hex number of 128 length which is to be converted to binary in c#
source foratting
Dec
12
answered C# Globalization & Satellite DLL’s
Dec
11
comment How does C# generate GUIDs?
A guid is not made of any characters, it is made of bytes. Hex characters is just a representation of it.
Dec
10
comment How would you like an API to expose error handling?
Basically I agree, but CSV parsing is much more general then a specific server API.
Dec
10
answered How would you like an API to expose error handling?
Dec
8
revised Which ORM Supports Multiple row Updates and Deletes
added 124 characters in body
Dec
8
accepted Use RESX internationalization in Data Objects, bad idea?
Dec
8
revised Which ORM Supports Multiple row Updates and Deletes
added 286 characters in body; added 280 characters in body
Dec
8
answered Which ORM Supports Multiple row Updates and Deletes
Dec
8
answered Use RESX internationalization in Data Objects, bad idea?
Dec
8
comment Use RESX internationalization in Data Objects, bad idea?
Don0't really understand. You mean: there is an entity with country names and an entity with language names which should be localized?
Dec
7
comment Compare equality between two objects in NUnit
@Ian: not yet. I'm working on it, since I see that there is a strong demand for something like this.
Dec
6
awarded  Mortarboard
Dec
4
answered Custom SQL function for NHibernate dialect
Dec
3
revised How to check programatically if a type is a struct or a class?
deleted 2 characters in body
Dec
2
comment How to check programatically if a type is a struct or a class?
Simple question, complicated answer. I edited my answer the second time.
Dec
2
revised How to check programatically if a type is a struct or a class?
added 454 characters in body
Dec
2
comment How to check programatically if a type is a struct or a class?
So the correct answer to the question here should be: type.IsValueType && !type.IsEnum
Dec
2
comment C# Sort and OrderBy comparison
Interesting results. Thank you for taking the time.
Dec
2
comment C# Sort and OrderBy comparison
I think, it's much different of sorting a very small list (3 items) 1000000 times, or by sorting a very large list (1000000 items) just a few times. Both is very relevant. In practice, medium size of list (what's medium? ... let's say 1000 items for now) is most interesting. IMHO, sorting lists with 3 items is not very meaningful.
Dec
2
comment Is there a better way to implment Equals for object with lots of fields?
I wrote a serialization tester which creates objects from scratch, serializes them and compares them using lots of reflection. It is highly configurable and consists of two thousand or more lines of code. I wanted to release it under LGPL, but have to ask my boss first and clean it a bit. So it doesn't help you for now.
Dec
2
revised Is there a better way to implment Equals for object with lots of fields?
added 84 characters in body; added 149 characters in body
Dec
2
answered Is there a better way to implment Equals for object with lots of fields?
Dec
2
revised How to check programatically if a type is a struct or a class?
edited body; added 1 characters in body
Dec
2
comment How can I use “Expression.Not” with text field?
what error did you get?
Dec
1
comment Batch UTF-8 Validation Tool?
I guess that it is not possible to seriously validate a file to be utf-8, since everything could be utf-8 even if the text doesn't make any sense for a human being. there might be a tool that tries to guess, based on statistics.
Dec
1
comment How to check programatically if a type is a struct or a class?
Funny enough, in the C# reference here msdn.microsoft.com/en-us/library/… an enum is actually not defined as a struct. Quote: "The value types consist of two main categories: structs, enumerations". While "numeric types" are defined as structs. Doesn't sound logical.
Dec
1
revised How to check programatically if a type is a struct or a class?
deleted 2 characters in body
Dec
1
comment How to check programatically if a type is a struct or a class?
@Andrew: I see, primitive types are actually defined as special case of structs, so I'm wrong. I added a note to my answer. I apologize for the troubles.
Dec
1
revised How to check programatically if a type is a struct or a class?
added 400 characters in body
Dec
1
comment How to check programatically if a type is a struct or a class?
@Luke: Yes, this is indeed the definition of primitive types. I always had to know if a type is a user defined struct, excluding primitive types, which is normally simply referenced to as "struct". But you are right, strictly speaking primitive types are also structs.
Dec
1
comment Free and usable UML diagrams editor
... and is not actively developed anymore.
Dec
1
comment Free and usable UML diagrams editor
IMHO, EA is probably the second worst tools around (after rational rose, does it still exist?). I mean: it works pretty well for just drawing a bit UML. But there are 5000 additional features which are not usable, do not work properly and pollute the UI until you can't find anything. Ironically, these features is what you pay for.
Dec
1
revised How to check programatically if a type is a struct or a class?
added 80 characters in body
Dec
1
comment How to check programatically if a type is a struct or a class?
@Andrew: int is a primitive type, which is a special case of a value type.
Dec
1
comment How to check programatically if a type is a struct or a class?
@Andrew: Structs are one kind of value types. Primitive types are another. So structs are value type, but value types not structs. (A bird is an animal, an animal is not a bird)
Dec
1
comment How to check programatically if a type is a struct or a class?
@Andrew: yes, Guid and DateTime are structs. See my answer.
Dec
1
comment How to check programatically if a type is a struct or a class?
If this is a dup, then not from the given link.
Dec
1
comment How to check programatically if a type is a struct or a class?
A primitive type is also a value type.
Dec
1
answered How to check programatically if a type is a struct or a class?