erichexter / twitter.bootstrap.mvc

nuget package to make bootstrap easy with mvc4
Apache License 2.0
248 stars 134 forks source link

Failing to find Key attribute on the property if the property name in the model not equal to "Id" #32

Open srnux opened 11 years ago

srnux commented 11 years ago

Model pseudo-code: [Key] public long AnythingDifferentFromId { get; set; }

Breaks at line 49, ViewHelperExtensions.cs : return model.GetType().GetProperty(model.IdentifierPropertyName()).GetValue(model,new object[0]); with exception: Object reference not set to an instance of an object.

Cause, line ~60: if (type.GetProperties().Any(info => info.PropertyType.AttributeExists())) does not find the Key

Possible solution, replace the if inside IdentifierPropertyName with: if (type.GetProperties().Any(info => info.GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.KeyAttribute), true)!=null)) { return type.GetProperties().First(info => info.GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.KeyAttribute), true)!=null).Name; }

erichexter commented 11 years ago

can you provide a pull request or a failing unit test?

Eric Hexter

blog | http://Hex.LosTechies.com info | http://www.linkedin.com/in/erichexter

On Tue, Dec 11, 2012 at 4:32 AM, srnux notifications@github.com wrote:

Model pseudo-code: [Key] public long AnythingDifferentFromId { get; set; }

Breaks at line 49, ViewHelperExtensions.cs : return model.GetType().GetProperty(model.IdentifierPropertyName()).GetValue(model,new object[0]); with exception: Object reference not set to an instance of an object.

Cause, line ~60: if (type.GetProperties().Any(info => info.PropertyType.AttributeExists())) does not find the Key

Possible solution, replace the if inside IdentifierPropertyName with: if (type.GetProperties().Any(info => info.GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.KeyAttribute), true)!=null)) { return type.GetProperties().First(info => info.GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.KeyAttribute), true)!=null).Name; }

— Reply to this email directly or view it on GitHubhttps://github.com/erichexter/twitter.bootstrap.mvc/issues/32.

srnux commented 11 years ago

I will try to provide the unit test as soon I get to my development machine.

Thanks, Luka

2012/12/22 Eric Hexter notifications@github.com

can you provide a pull request or a failing unit test?

Eric Hexter

blog | http://Hex.LosTechies.com info | http://www.linkedin.com/in/erichexter

On Tue, Dec 11, 2012 at 4:32 AM, srnux notifications@github.com wrote:

Model pseudo-code: [Key] public long AnythingDifferentFromId { get; set; }

Breaks at line 49, ViewHelperExtensions.cs : return

model.GetType().GetProperty(model.IdentifierPropertyName()).GetValue(model,new

object[0]); with exception: Object reference not set to an instance of an object.

Cause, line ~60: if (type.GetProperties().Any(info => info.PropertyType.AttributeExists())) does not find the Key

Possible solution, replace the if inside IdentifierPropertyName with: if (type.GetProperties().Any(info =>

info.GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.KeyAttribute),

true)!=null)) { return type.GetProperties().First(info =>

info.GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.KeyAttribute),

true)!=null).Name; }

— Reply to this email directly or view it on GitHub< https://github.com/erichexter/twitter.bootstrap.mvc/issues/32>.

— Reply to this email directly or view it on GitHubhttps://github.com/erichexter/twitter.bootstrap.mvc/issues/32#issuecomment-11640702.

srnux commented 11 years ago

Please find the unit tests inside a test project here:

https://github.com/srnux/MVCTwitterBootstrap

Luka

erichexter commented 11 years ago

awesome.. i will add a project and unit tests in the for this extension code and add the appropriate code to support the key attribute

Eric Hexter

blog | http://Hex.LosTechies.com info | http://www.linkedin.com/in/erichexter

On Mon, Dec 24, 2012 at 5:15 AM, srnux notifications@github.com wrote:

Please find the unit tests inside a test project here:

https://github.com/srnux/MVCTwitterBootstrap

Luka

— Reply to this email directly or view it on GitHubhttps://github.com/erichexter/twitter.bootstrap.mvc/issues/32#issuecomment-11658895.

xkobram commented 11 years ago

I have another resolution (more like a quickfix) for this bug: change ... info.PropertyType.AttributeExists ... to info.AttributeExists ... on lines 66 and 70.

The problem is that info.PropertyType points to the type of the property (ie String) so it can't have the KeyAttribute. but info.AttributeExists asks about the attributes of the actual property.

starcub commented 11 years ago

@xkobram 's post should fix the issue.

gomifromparis commented 11 years ago

Just to confirm I had the problem with a key attribute on a string, xkobram's solution fixed it.

eljeanc commented 11 years ago

Im having the same problem described but in muy situtation we are using fluent api so we do not add the key data annotation in the class or the ID to the key in the object. What can i do ?

I would appreciate any help.

erichexter commented 11 years ago

You can change that method to find your id field by your convention.

On Saturday, July 20, 2013, eljeanc wrote:

Im having the same problem described but in muy situtation we are using fluent api so we do not add the key data annotation in the class or the ID to the key in the object. What can i do ?

I would appreciate any help.

— Reply to this email directly or view it on GitHubhttps://github.com/erichexter/twitter.bootstrap.mvc/issues/32#issuecomment-21297540 .

Eric Hexter

blog | http://Hex.LosTechies.com info | http://www.linkedin.com/in/erichexter

eljeanc commented 11 years ago

any idea on how to achieve this i have been thinking how to make it work without using the data annotations, this because our project will not use it directly in de dtos.

erichexter commented 11 years ago

If you name your properties Id or key or some other predictable way you can do it that way, the views support the name id now. That is how I use it

On Saturday, July 20, 2013, eljeanc wrote:

any idea on how to achieve this i have been thinking how to make it work without using the data annotations, this because our project will not use it directly in de dtos.

— Reply to this email directly or view it on GitHubhttps://github.com/erichexter/twitter.bootstrap.mvc/issues/32#issuecomment-21297958 .

Eric Hexter

blog | http://Hex.LosTechies.com info | http://www.linkedin.com/in/erichexter