158 reputation
8
bio website
location
age
visits member for 1 year, 1 month
seen yesterday
stats profile views 44

May
19
awarded  Popular Question
May
18
asked WPF application very slow - Kinect SDK 1.7
May
6
revised Model Key and Foreign Key parametres are null in controller after POST action
added 37 characters in body
May
6
comment Model Key and Foreign Key parametres are null in controller after POST action
@MajorByte - HttpContext.Request.Url.PathAndQuery gives the following result: /Cats/Edit/1. The Id of the edited cat is indeed 1.
May
6
answered Model Key and Foreign Key parametres are null in controller after POST action
May
6
comment Model Key and Foreign Key parametres are null in controller after POST action
Unfortunately, this solution also doesn't work for me.
May
6
comment Model Key and Foreign Key parametres are null in controller after POST action
I've set a breakpoint and those values are the only ones that are 0. @MajorByte - I updated my question.
May
6
revised Model Key and Foreign Key parametres are null in controller after POST action
added 1637 characters in body
May
5
comment Model Key and Foreign Key parametres are null in controller after POST action
@MajorByte - Id has this attribute: [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
May
5
comment Model Key and Foreign Key parametres are null in controller after POST action
@webdeveloper - there is an exception while saving to a database and I see a state of the model inside Locals window. I see that all values are set, except Id and OwnerId. Debug.WriteLine("Cat Id: " + model.cat.Id); also displays 0 in Console.
May
5
comment Model Key and Foreign Key parametres are null in controller after POST action
No, I checked that. I also tried to put EditorFor but thos elements but they were still not posted.
May
5
comment Model Key and Foreign Key parametres are null in controller after POST action
Yes. All those hidden fields are posted inside a form and displayed correctly. Weird thing is that when model is received in controller, first two fields are 0 and other fields have their normal values.
May
5
asked Model Key and Foreign Key parametres are null in controller after POST action
May
5
comment C# get all elements of array
Do you maybe know what would this error appear for array[i]: Cannot apply indexing to an expression of type System.Array?
May
5
comment Populate EditorFor for DateTime
Now it works! The problem is that know it throws an exception if user sets a year lower than 1753. I googled a little bit and I think I will need to set some custom validation inside my model. What do you think? Can I set allowed year range somehow differently=
May
5
comment Populate EditorFor for DateTime
Now the only problem is that it sets a year to 0001 and if the year is lower than 1753, it throws an exception. I can set a year in controller to a more acceptable value (like 2013) but I was wondering do you maybe know how can I set a year range for DateTime so it will not pass validation if user sets lower year than 1753?
May
5
comment Populate EditorFor for DateTime
Thank you. This was helpful.
May
5
comment Populate EditorFor for DateTime
@saravanan - Thanks but when I put ToString("dd.MM.yyyy") I'm receiving the following error: Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions.
May
5
asked Populate EditorFor for DateTime
Apr
30
accepted Complex model is null after POST action