Tagged Questions
The asp.net-dynamic-data tag has no wiki summary.
27
votes
6answers
7k views
Is it possible to have two partial classes in different assemblies represent the same class?
I have a class called 'Article' in a project called 'MyProject.Data', which acts as the data layer for my web application.
I have a separate project called 'MyProject.Admin', which is a web-based ...
6
votes
1answer
374 views
Define Scaffolding. (with respect to Dynamic Data and ASP.NET MVC)
There is a lot of information about how to implement and customize scaffolding with Dynamic Data and ASP.NET MVC. What exactly is the definition of scaffolding when used in this context?
6
votes
1answer
366 views
ASP.NET Dynamic Data PRO and CONS
I heard about ASP.NET Dynamic Data in ASP.NET 4.
I would like to know if you have implemented in real scenario web application and your opinions, specially in terms of customization.
Some questions:
...
6
votes
3answers
7k views
ASP.NET Dynamic Data Add Additional Filter Criteria to Page
How should I be adding additional search/filter criteria to a Dynamic Data Web Application?
I created a Dynamic Data Web Application using the Northwind database and I am using a custom page for the ...
5
votes
4answers
190 views
Do you think ASP.Net Dynamic Data is worth it?
At the risk of sounding misinformed, I'm under the belief that this is basically useful for RAD and fast sketching of an application.
It feels somewhat Ruby-esque in the sense that it scaffolds ...
3
votes
2answers
144 views
How do I filter rows in a table using ASP.NET Dynamic Data Entities?
Currently, ASP.NET Dynamic Data Entities only supports filtering on boolean or Foreign Key relationships out-of-the-box
How would I implement a custom filter, based on a dropdown list of values to ...
3
votes
1answer
363 views
How to best integrate existing database data in a content type
I have an existing database (SQL) with relational data (for example with various 1-n and m-n relationships) that I would like to integrate into a Orchard CMS based website. That database has a ...
3
votes
2answers
371 views
Scrambling URLS for dynamic data
What is the best method to obfuscate the urls created in Dynamic Data?
eg \Products\List.aspx?ProductId=2 could become
\Products\List.aspx?x=UHJvZHVjdElkPTI=
where "ProductId=2" is base 64 ...
3
votes
4answers
1k views
ASP.NET Dynamic Data DisplayColumn Attribute Causing Sorting Issue
Using ASP.NET Dynamic Data with a LINQ to SQL DataContext from the Northwind Database...
When I add a DisplayColumn Attribute to one of my LINQ to SQL "entity" classes and reference a property from ...
2
votes
3answers
66 views
DynamicData - How can I show the child count in the Children.ascx.cs FieldTemplate?
MS DynamicData's Children.ascx.cs file has a Page_Load method that returns a hyperlink which says "View Children". I want to append the number of children to the end of the hyperlink text. Below is my ...
2
votes
2answers
746 views
How to create breadcrumbs using Dynamic Data/LINQTOSQL framework?
I need some EXAMPLES or IDEAS on how to created dynamic breadcrumb control which will dynamically generated breadcrumbs for Dynamic Date framework powered by LINQTOSQL
2
votes
1answer
286 views
How can I filter choices out of a drop down list when using Dynamic Data?
I feel like this should be easy, but I don't see any way to do it.
I'm using ASP.NET Dynamic Data with Linq to SQL. I've got a table with an Association to the Technician table. The Parent ...
1
vote
1answer
127 views
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 ...
1
vote
1answer
110 views
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 ...
1
vote
1answer
182 views
Asp.Net Dynamic Data update/insert 2 tables in single transaction
I'm currenlty using Asp.Net Dynamic Data, with Linq to Sql, to create an simple site that only has CRUD actions associated with it.
Unfortunately I'm not able to change the database schema at all and ...
1
vote
2answers
119 views
Are there any real-world case studies on the ASP.NET Dynamic Data Framework (DDF)?
I just wrapped up an arch review and next-gen recommendation for a client of ours that needs about the deepest level of customization I’ve ever seen for an application. Their desire is to customize ...
1
vote
1answer
383 views
How do you insert foreign keys with Dynamic Data
I am having trouble with foreign keys Dynamic Data and entity framework 4.0. It feels like there is a problem with the entity association but I am not sure. I have multiple fields representing the ...
1
vote
1answer
36 views
Controling Edit, Delete on individual items
Is there a way to enale/disable the edit and delete on individual entity instances using a propery on the entity when displaying in the List control?
1
vote
1answer
668 views
How to disable delete button in ASP.NET Dynamic Data?
I need to disable delete button GLOBALLY based on some condition?
The following solutions will not work for me:
http://csharpbits.notaclue.net/2009/07/securing-dynamic-data-preview-4-refresh.html
...
1
vote
1answer
967 views
Dynamic Data UIHint(“MultilineText_Edit”) in Grid and Edit
When a particular property on my model is attributed with UIHint("MultilineText_Edit") it renders the multiline text edit in the Details view, but not in the Edit view. In the Edit view it's a tiny ...
1
vote
2answers
2k views
Visual Studio “Convert to Web Application” and “Could not load type” errors
I'm currently getting a "Could not load type UI.Administration.Site.master" error message and I'm not really sure as to why.
I have an ASP.NET MVC Project with the UI namespace. Within the project's ...
1
vote
1answer
142 views
ASP.Net DynamicData pages scaffolded from DB tables: is there a simple way to change their names?
ASP.net scaffolding creates administrative page names by adding a 'S' to the name of the table. Thus the editing page for User table is named Users, and so on.
Is there a simple way of changing ...
1
vote
1answer
343 views
ASP.NET Dynamic Data Record Selection
I am displaying a list of customer records from SQL Server using L2S where I only want to display active customers (where Status = 'A'). How do I implement this logic in Dynamic Data? I am using the ...
1
vote
1answer
465 views
How do I get the value of a DynamicControl?
I'm using ASP.NET Dynamic Data functionality to do something a little weird. Namely, create a dynamic list of fields as children of the main object.
So basically I have Ticket.Fields. The main ...
1
vote
2answers
470 views
Can you have a Dynamic Data Field which consists of a list of fields?
This is a purely theoretical question (at least until I start trying to implement it) but here goes.
I wrote a web form a long time ago which has a configurable section for getting information. ...
0
votes
0answers
39 views
Dynamic Data - IIS7.5 .net 4.0 Integrated Mode - 404 Error
Sorry everyone if you feel like you've answered this question! I have scoured Google and stackoverflow responses and tried them all but with no luck.
In my test environment on VS 2010, .net 4.0 - the ...
0
votes
1answer
34 views
Absence of insert,delete,details links in ASP.Net Dynamic Data Linq to Sql Web App
I created ASP.Net Dynamic Data Linq to Sql Web Application. I added Linq to Sql item into the project and configured the connection between database tables and project successfully.I run the ...
0
votes
0answers
34 views
ASP.NET Custom Field Template Of TimeZoneInfo Type
I'm working on a project where we store TimeZoneInfoIDs in the database in order to easily convert times stored in the database to the local time of a location. The TimeZoneInfoID is kept internally ...
0
votes
1answer
193 views
Loading Foreign Key Values using DynamicDataManager control in a Gridview column on regular asp.net pages
I am working on a gridview that can perform add, edit and delete operations on master tables in a database. On Edit operation, It Should populate all foreign key values((if any) in a dropdown ...
0
votes
1answer
29 views
How do I validate one field based on the data in the another in the same table in my Dynamic Data Website?
I have a table in a my Dynamic Data website that has a Primary Phone Number field and a Country field. I have regular expression for the phone field that validate US domestic phone numbers and ...
0
votes
1answer
83 views
scaffold all guid's in asp.net dynamic data by default
is there an option to scaffold all guid columns in asp.net dynamic data by default?
I know there's the possibility to set the ScaffoldColumn attribute to true in this way:
...
0
votes
1answer
40 views
.NET DynamicData in production systems
I have to decide is DynamicData is a right thing to me. The goal is to build web UI for CRIUD to DB. I already have EF4 codefirst model for this DB.
Things to think about: a lot of ugly things (can't ...
0
votes
1answer
246 views
ASP.NET Dynamic Data Filtering
I'd like to use ASP.NET Dynamic Data 4.0 with an EF POCO ObjectContext as a simple entity administration console for system administrators (I'm contemplating abandoning this technology...).
I've got ...
0
votes
0answers
69 views
How do I filter rows from a drop down in ASP.NET Dynamic Data? [closed]
Suppose I want to filter the rows of a table by a certain value, selected by a dropdown list value, how would I do this?
EDIT: Sorry everyone, I thought I was clear in the title but I meant using the ...
0
votes
1answer
141 views
Ajax CascadingDropDown webservice call not working in Custom pages in Dynamic Data website
I have created a Dynamic Data website using the Dynamic Data Website template in ASP.NET 3.5 VS2008. I wanted to have to custom page for a particular table. So I have created a folder under ...
0
votes
1answer
88 views
How to add Dynamic Data Web site into a Existing Web Project
I developed a web site it's online now. Web site has stores and news. When i am developing I don't have much time so i generated a CMS with Dynamic Data Website now i have 2 web sites.
First it was ...
0
votes
0answers
60 views
ASP.NET DynamicData, on postback form disapears when using Ninject.Web?
Ive been using Ninject.Web extension for few months now with great success.
In a bid to make things easier for myself to maintain a clients database I decided to give ASP.NET DynamicData a go.
I ...
0
votes
1answer
208 views
How to hide filtered column with dynamic data site?
I have 'ProductType' column filtered, but it still is in data grid. If I apply ScaffoldColumn(false) filtering feature will disappear...
How to hide column and keep filtering option?
Thanks.
0
votes
1answer
117 views
How to display additional (calculated) entity field into dynamic data web site?
I'm displaying list of products using dynamic data web site. That is easy.
Is there any way to display amount of 'orders' related to that product? How to do that?
Thanks.
P.S. Probably, I should ...
0
votes
1answer
66 views
Dynamic Data Site doesn't filter by nchar field
I have 2 tables that have a foreign-key relationship through the field that has nchar type.
Database designer successfully created relationship and displays it on database diagram. But entity model ...
0
votes
1answer
172 views
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
...
0
votes
1answer
66 views
Use session as source of field for dynamic data column
I have a Dynamic Data column that I want to be populated by a field from the Session collection. (So that when the user chooses to manipulate data related to that column, where necessary, they will ...
0
votes
1answer
350 views
(Dynamic Data, ASP.Net, C#, dropdownlists custom .ascx controls ) HOW TO PASS VALUES AMONG DROPDOWNLISTS?
I am working using ASP.Net Dynamic Data, Visual Studio 2010 and C#.
I have three custom controls (FieldTemplates) with extension .ascx: business_type.ascx, department.ascx, section.ascx
If I had ...
0
votes
1answer
139 views
How to retrieve DynamicData DetailsView Viewstate when a SqlException occurs during Inserting?
Using DyanamicData, I have a standard Many-to-Many table that is working perfectly fine when inserting a new unique row. The dropdownlists for both Parent tables display as they should, and the row ...
0
votes
1answer
315 views
Retrieving values of ReadOnly fields from DynamicData DetailsView in Edit Mode on Updating using LinqDataSource
I have several tables in my database that have read-only fields that get set on Inserting and Updating, namely: AddDate (DateTime), AddUserName (string), LastModDate (DateTime), LastModUserName ...
0
votes
1answer
707 views
Applying like filter to an IQueryable
I'm trying to write a custom filter for Dynamic data that will allow me to run like type queries on entity columns. For example searching for john on name field to returen johnson, johns etc.
I'm ...
0
votes
1answer
123 views
Restricting the values of nvarchar column using dynamic data entities
I am using ASP.NET Dynamic Data Entities project to generate a web application for my database. I was wondering what is the easiest way to restrict the allowed values for a column without changing the ...
0
votes
1answer
126 views
ASP.NET Dynamic Data - Back Button
I used .Net's dynamic data entity to implement a website that sits on top of my db (see
http://msdn.microsoft.com/en-us/library/ee845452.aspx)
In the List.aspx-View for a table, I am able to ...
0
votes
2answers
208 views
Password Field with Asp.Net Dynamic Data
I have a User table that I want to use with Dynamic Data. The Problem is that I have the Password Field that I need to encrypt using MD5. I am Using Entity Framework, How I do this?
0
votes
1answer
400 views
ASP.NET Dynamic Data and uploading files
I am developing a small, internal-use only web application. Given its simple nature and intended audience, I decided that it might be a good opportunity to use a ASP.NET Dynamic Data project to get ...