I need to put a max length on my test field on my Views using ASP.NET MVC with the Entity Framework and I can't find how to get the max length of a varchar field.
Is there an easy way to get that, or any other property of a database field
|
I need to put a max length on my test field on my Views using ASP.NET MVC with the Entity Framework and I can't find how to get the max length of a varchar field. Is there an easy way to get that, or any other property of a database field
| ||||
|
feedback
|
|
Here is how i manage to do it (with an extension method on entities) :
| |||||||||
feedback
|
|
Update I realize that this answer doesn't directly apply to EF. At the time that I answered, there had been no answers for about 20 minutes and I thought knowing how I solved a similar problem with LINQToSQL might help. Given that the OP basically used the same technique albeit with EF properties instead, seems to indicate that I made the right choice. I'm leaving this answer here for context and for those who get here having the same problem but with LINQToSQL. Original I don't know about EF, but LINQToSQL entity properties are decorated with ColumnAttributes. You may be able to get the ColumnAttribute from the PropertyInfo for the property by looking at the CustomAttributesCollection. The value of this attribute would need to be parsed for length. I do that in my validator classes to make sure that I'm not going to get a SQL error by using a string that is too long for my column. This is the method I use to extract the column length for string properties.
| |||||||||
feedback
|
|
For EntityFramework you would need to add your own custom attributes to the classes using a Code Generator or T4 Template. Then what tvanfosson stated above would hold true. EF does not persist this information by default. Explains more of what I am talking about with your code generator. It is pretty slick I have done exactly what you are mentioning before, problem is with proprietary code so I do not have an example for you. | |||
|
feedback
|