When I write classes and mappings that contain Integer values, what data types should I use?
short, int and long? Or System.Int16, System.Int32 and System.Int64 ? Does it make any difference which of these variants I use? I've seen examples with both of them. public virtual Int32 Foo ... <property name="Foo" type="Int32" /> or: public virtual int Foo ... <property name="Foo" type="int" /> ... -- You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhusers?hl=en.
