M
Mark
Hi,
I have table in database "documents". I have column "binary" which is
VarBinary(MAX) with big content.
I decide to use lazy initialization. So in designer I set "delay
loaded" = true. I read my records:
var select = from d in db.Documents select d;
return select.ToList();
and I can see in debuger, that the property "Binary" has content.
Why ? I didn't use this property so I expected to be null until I use
it.
Thanks for help
I have table in database "documents". I have column "binary" which is
VarBinary(MAX) with big content.
I decide to use lazy initialization. So in designer I set "delay
loaded" = true. I read my records:
var select = from d in db.Documents select d;
return select.ToList();
and I can see in debuger, that the property "Binary" has content.
Why ? I didn't use this property so I expected to be null until I use
it.
Thanks for help