1
vote
1answer
36 views
Populating an Object from the DB — Where do you stop?
When getting an object from the DB, should the object's properties also be loaded? There seems to be these approaches.
Create well-formed, fully-loaded objects.
Pro: No need to …
0
votes
4answers
36 views
Parsing boolean from configuration section in web.config
Hello, I have a custom configuration section in my web.config.
One of my classes is grabbing from this:
<myConfigSection LabelVisible="" TitleVisible="true"/>
I have thin …
0
votes
1answer
32 views
DateTime comparison in ObjectQuery.Where
I'm using Entity Framework, and I have a COMMENT entity. A COMMENT has a DATEMODIFIED property, which is a Nullable Date. I'm trying to build a query that will filter COMMENTs by …
0
votes
2answers
38 views
StructureMap “WithCtorArg” “EqualTo” and nullable types
StructureMap doesn't like passing in Nullable types as constructor arguments. Is there a reason for this? Is there a way to get this to work?
[TestMethod]
public void Demo()
{
…
0
votes
1answer
40 views
Binding to a Nullable<DateTime> control property
We have a custom control that has a "Value" property of type System.Nullable (aka System.DateTime?). We have an object with a "Received" property of the same type. When we try to …
2
votes
1answer
80 views
Library support for Scala’s NotNull trait
As far as I understand, if you want a reference type to be non-nullable you have to mixin the magic NotNull trait, and the compiler will automatically prevent you from putting null …
0
votes
1answer
34 views
How to use SqlBulkCopy with nullable columns
I’m having an issue using SqlBulkCopy when nullable columns are involved. It sounds like SqlBulkCopy doesn't know how to deal with nullable columns and throws an illegal size error …
0
votes
9answers
156 views
C# newbie with DateTime variable I want to set to null
I have an output data class with a DateTime variable. I want to clear that to a null value in a loader class but the compiler complains with:
Cannot convert null to 'System.Data.T …
2
votes
4answers
92 views
How to exclude null properties when using XmlSerializer
I'm serializing a class like this
public MyClass
{
public int? a { get; set; }
public int? b { get; set; }
public int? c { get; set; }
}
All of the types are nullabl …
1
vote
4answers
153 views
Set property Nullable<> by reflection
I try to set a Nullable<> property dynamicly.
I Get my property ex :
PropertyInfo property = class.GetProperty("PropertyName"); // My property is Nullable<> at this time …
1
vote
1answer
75 views
Hibernate default joining for nullable many-to-one
Hi all,
I have a hibernate mapping like this in a ProductDfn class
@ManyToOne( fetch = FetchType.LAZY, optional = true )
@JoinColumn( name = "productTypeFk", nullable = true )
pu …
0
votes
3answers
687 views
Deserializing empty xml attribute value into nullable int property using XmlSerializer
Hello,
I get an xml from the 3rd party and I need to deserialize it into C# object. This xml may contain attributes with value of integer type or empty value: attr=”11” or attr=”” …
1
vote
2answers
65 views
Overloading a Method to Support Reference Types and Nullable Types
I have an extension method that I would like to overload so it can handle both reference types and nullable value types. When I try to do this, however, I get "Member with the same …
3
votes
3answers
112 views
Why is a Nullable<T> not a valid Custom Attribute Paramater when T is?
If I have an enum like this
public enum Hungry
{
Somewhat,
Very,
CouldEatMySocks
}
and a custom attribute like this
public class HungerAttribute : Attribute
{
p …
4
votes
5answers
147 views
What is the memory footprint of a Nullable<T>
An int (Int32) has a memory footprint of 4 bytes. But what is the memory footprint of:
int? i = null;
and :
int? i = 3;
Is this in general or type dependent?
