Questions tagged [asp.net-dynamic-data]

ASP.NET Dynamic Data allows users to easily create extensible, data-driven Web applications by using scaffolding, which uses metadata from the data model to create the UI for Web applications. It dynamically generates Web Pages at run time from data model with list, add, edit templates with support for sorting and paging.

ASP.NET Dynamic Data is an extension to Microsoft's ASP.NET platform which allows users to easily create extensible, data-driven Web applications by using scaffolding. Scaffolding uses metadata from the data model to create the UI for the Web application. Scaffolding auto-generates Web pages that provide create, read, update and delete (CRUD) operations for each table in the model.

References:

220 questions
2
votes
1 answer

Entity Framework and impersonation

I'm incorporating Entity Framework and ASP.NET Dynamic Data into an existing application that is setup to use impersonation="true" in the web.config, however the previous developers chose an approach where they revert back to the app pool identity…
2
votes
1 answer

T4 templates for MVC that replicate ASP.net Dynamic Data functionality?

I love the functionality that you get with ASP.net Dynamic Data web applications. I love the power and control you get from the MVC framework. Does anyone have T4 templates for MVC that replicate ASP.net Dynamic Data functionality?
Tarzan
  • 4,270
  • 8
  • 50
  • 70
2
votes
1 answer

Dynamic Data Site: can't hide a table

I've create new web site based on 'Dynamic Data Site' template. 3 tables were added into it: Product, ProductSKU, SkuPrice. There are relationships between tables: Product.ProdId=ProductSku.ProdId ProductSku.SkuId=SkuPrice.SkuId I don't want user…
Budda
  • 18,015
  • 33
  • 124
  • 206
2
votes
2 answers

How should I use Rx + DynamicData to periodically check for updates from many online services?

I have a basic Calendar/Agenda app that will list the most recent events from a series of accounts and calendars. For example, let's say I have 3 accounts: two different Microsoft accounts and one Google account. I am currently storing these as a…
Lee McPherson
  • 931
  • 6
  • 20
2
votes
1 answer

asp.net mvc / dynamicdata entities which one to try out

I am going to develop a web application, the client left me with the choice of application development, I am currently doing those kind of jobs with vs2008 (.net 3.5), now I wish to develop this new app either in asp.net MVC or develop it using…
sansknwoledge
  • 4,209
  • 9
  • 38
  • 61
2
votes
1 answer

Why is DynamicData not working on new 2012 Server?

I have an ASP.Net website that uses DynamicData controls that works on it's current server and locally, but any page with dynamic controls fails on the new 2012 server i'm setting up. Everything is pretty much identical from an application…
SirM
  • 487
  • 6
  • 22
2
votes
1 answer

Using ASP.NET dynamic data web app. along side ASP.NET MVC Project

I'm working on a project and building a website. For user's i create a asp.net mvc project and my admin panel should work with ASP.NET dynamic data for inserting and deleting and updating site's data. So i have some challenges for creating this…
user2486709
2
votes
1 answer

How to build an IEnumerable.Contains() Expression?

I'm currently working with ASP Dynamic Data for the first time and I'm trying to build a filter. Our users have a need to locate items in a list based upon whether or not the item is a child of a selected parent (our items can have more than one…
Sonny Boy
  • 7,848
  • 18
  • 76
  • 104
2
votes
1 answer

Combination of Dynamic Data Entities Web Application Template and Asp.Net Web Forms Template

I would like to create a website using Visual Studio 2012 For Web which has a database and a generated UI such as we have if we use the template project: Dynamic Data Entities Web Application But I would also like to have a login page such as…
2
votes
1 answer

Dynamic Data asp.net Foreign key relationship in DropdownList, how to customise?

I'm working on Asp.Net Dynamic Data project with linq to sql. I've created a database that has one to one relationship between two tables specified using a foreign key. i.e. I have a table Employee and table Department Employee table empid empname…
Neo
  • 15,491
  • 59
  • 215
  • 405
2
votes
2 answers

hide delete button in list page in dynamic data

I am using Asp.Net Dynamic Data. I want to remove delete button from List and details page. I dont want to remove it from mark up. Is there any way to remove delete button based on entity and without adding custom pages?
manoj
2
votes
1 answer

ASP.NET Dynamic Data editing Complex Objects

I'm working on a ASP.NET Dynamic Data web site with a Linq to SQL Database Context and I have a question. In one of my tables, ARReports, exists a column with raw XML data which I can deserialize into a ReportDetails object, along with other data…
LamdaComplex
  • 871
  • 1
  • 8
  • 21
2
votes
2 answers

Foreign key table field not displaying within a standalone dynamic data enabled list view

I've gone through hundreds of Google result pages, trying to find an answer for this over the past couple of days. Using a standalone dynamic data page to display a table, using an EntityDataSource, with one of the fields being a foreign key to a…
Thom
  • 371
  • 1
  • 2
  • 8
1
vote
2 answers

Dynamic Control loading at wrong time?

This one is a little... odd. Basically I have a form I'm building using ASP.NET Dynamic Data, which is going to utilize several custom field templates. I've just added another field to the FormView, with it's own custom template, and the form is…
CodeRedick
  • 7,346
  • 7
  • 46
  • 72
1
vote
1 answer

Is it possible to use asp.net Dynamic Data with EF + Repository pattern

I'm hoping to scaffold a bunch of web forms pages using asp.net dynamic data. The tutorials fit in nicely when going directly into Entity Framework. However we are using generic repositories (to provide a multi tenancy layer), does anyone have any…
1 2
3
14 15