392,112 reputation
559511461
bio website marcgravell.blogspot.com
location Forest of Dean, UK
age 34
visits member for 4 years, 7 months
seen 5 hours ago
stats profile views 121,094

Stack Overflow Valued Associate #00006

e-mail: marc.gravell@gmail.com
blog: http://marcgravell.blogspot.com
twitter: @marcgravell

C# programmer and MVP, with a keen interest in all things code. Particular areas:

  • C# language specifics
  • LINQ (including EF, L2S, ADO.NET Data Services)
  • Protocol Buffers
  • Expression (the LINQ one, not Blend)
  • TSQL / SQL Server general
  • xslt
  • ASP.NET MVC (but not regular ASP.NET)
  • WinForms
  • Bespoke runtime object models (TypeDescriptor)


9h
comment Read jpeg file in Python, encode it into Unicode and put it into protobuf
You don't "encode" binary into Unicode - that is using the encoder backwards and the result is not defined. She tiny.cc/io - you should (as over the answer here) just store the binary directly
18h
comment SELECT query using SqlParameter isn't working
The tostring line achieves very little helpful, btw
18h
comment Weird serialization error when entity is serializable
Yeah, 9 times out of 10 this turns out to be an event handler
18h
comment Weird serialization error when entity is serializable
This usually means it is a captured variable context class due to an event handler
18h
comment Task cancelled error when using redis cache in c#
Again: where is your redis server??? I assume you have a server somewhere running redis? You should have some kind of identity. How / where are you running redis? If you can describe your setup, I have an azure account - so I can try to repro it on my own cloud.
18h
comment If constructor is a method, that doesnt return anything why is there no return type as void? C#
@nair the "new" operator returns the reference. The constructor itself, however, is a void-returning method.
18h
comment If constructor is a method, that doesnt return anything why is there no return type as void? C#
@Eric I beg to differ on the "of course". I am prone to error, naivety and simple bone-headedness
22h
comment Task cancelled error when using redis cache in c#
all I mean is: you presumably have a redis server running somewhere. Where is that somewhere? Is it on the same machine? If not - do you know its name? IP? (I don't need to know what the name / IP is ... I'm just asking what you know about the server)
1d
answered Cannot send a content-body with this verb-type
1d
comment If constructor is a method, that doesnt return anything why is there no return type as void? C#
Whether it is callable in that way is largely unrelated to the declared return type
1d
comment If constructor is a method, that doesnt return anything why is there no return type as void? C#
In IL terms, this is not correct. A constructor does not "return" anything. Meaning: the relative stack must be flat (zero values) at the point of exit. Logically, it is effectively a "void" returning method.
1d
answered If constructor is a method, that doesnt return anything why is there no return type as void? C#
1d
comment Is there a Dapper executenonquery? How do I know if my update worked?
@Slee it can be easy to miss things. We need to call it something different because extension methods resolve after instance methods. Besides: we don't normally name things for what they aren't... So ExecuteNonQuery felt overkill as a name.
1d
awarded  dispose
1d
awarded  protobuf-net
1d
answered protobuf-net - generated class from .proto - Is repeated field supposed to be Read Only with no setter?
1d
comment implementing out-of-process cache using Redis in windows azure
Note that the Sleep here is just to simulate you carrying on going doing your business; the point is that within about 0.5ms of the edit happening, all nodes will know about it
1d
answered implementing out-of-process cache using Redis in windows azure
1d
answered Task cancelled error when using redis cache in c#
1d
comment Prefix every column name with a specific string?
I would say the right answer here is what you have in the question: "Right now, I am doing the following to map them down..."