Re: Problem writing code with Entities(Asp.net c#,Dynamic Data, Entity...
Sorry columns computed on the server won't work you will need to remove that code and do the compute in the DB
View ArticleRe: Problem writing code with Entities(Asp.net c#,Dynamic Data, Entity...
The sample is as followsusing System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using...
View ArticleRe: Problem writing code with Entities(Asp.net c#,Dynamic Data, Entity...
Post a sample of your metadata/buddy class where you have this set do I can look.
View ArticleRe: Problem writing code with Entities(Asp.net c#,Dynamic Data, Entity...
Hi steve.,I did that already but still can't see the computed columns in dynamic data site is there anything else i am missing....., i have went through the previous posts and i found this is...
View ArticleRe: Problem writing code with Entities(Asp.net c#,Dynamic Data, Entity...
you have to manyally scaffold those column i.e.[ScaffoldColumn(true)]or[Display(AutogenerateField=true)]
View ArticleRe: Problem writing code with Entities(Asp.net c#,Dynamic Data, Entity...
Hi Steve.,As per your suggestion i created a model with database first appraoch and now the problem is that i can't find those computed columns in dynamic data site, so how can i make those computed...
View ArticleRe: Problem writing code with Entities(Asp.net c#,Dynamic Data, Entity...
Hi this sort of thing is possible but you have to remember that sort will not work on model based calculated fields I always start database first for this reason and use a computed column.There was an...
View ArticleProblem writing code with Entities(Asp.net c#,Dynamic Data, Entity Framework)
HiI have created an Dynamic data site with ASP.NET, c# and EF(Model first Approach) in which i have some time fields and now i want to add those time fields and display the sum in an textbox which is...
View Article