Tagged Questions
The dynamic-data tag has no wiki summary.
80
votes
33answers
7k views
Are the days of the stored procedure numbered?
In Scott Hanselman's interview of the stack overflow guys, Scott and Jeff make mention that they may be seen as heretics for declaring that the days of the stored procedure are dead. Why might they ...
16
votes
12answers
7k views
Dynamic Database Schema
What is a recommended architecture for providing storage for a dynamic logical database schema?
To clarify: Where a system is required to provide storage for a model whose schema may be extended or ...
13
votes
8answers
11k views
Setting the default value of a DateTime Property to DateTime.Now inside the System.ComponentModel Default Value Attrbute
Does any one know how I can specify the Default value for a DateTime property using the System.ComponentModel DefaultValue Attribute?
for example I try this:
...
12
votes
5answers
15k views
App_Code folder is missing in VS 2010
I was trying to create a Dynamic Data Website using VS 2010 RC. An attempt to create an App_Code folder where I would put a LINQ to SQL class, failed. When I selected 'Add ASP.NET Folder' to add the ...
12
votes
8answers
8k views
Why does jQuery UI's datepicker break with a dynamic DOM?
I'm working with a dynamic DOM here, and have called the jQuery UI datepicker to all inputs with a specific class name, in this case .date
It works great with the first, static, construct but when I ...
11
votes
4answers
537 views
Abstract: Should I choose ASP.Net MVC over Web Forms or
I've been working with web for over 7 yrs and I've upgraded from html->ASP->ASP.Net and now the new flavors of ASP.Net itself. I was to begin with MVC last year but due to deadline and the complexity ...
9
votes
6answers
1k views
ASP.NET Scaffolding/Templating CRUD Solutions
I've been looking into ASP.NET Dynamic Data and how it does scaffolding and routing. I've only scratched the surface, but it's looking like I'd have to create a template for each table that I didn't ...
9
votes
3answers
3k views
Hide a column in ASP.NET Dynamic Data
Is there any way to apply an attribute to a model file in ASP.NET Dynamic Data to hide the column?
For instance, I can currently set the display name of a column like this:
[DisplayName("Last ...
8
votes
4answers
135 views
Passing auto typed vars to function in D?
This doesn't work in D:
void doSomething(auto a, auto b){
// ...
}
I'm just curious, will this ever work? Or is this just technically impossible? (Or just plain stupid?)
In anyway, can this be ...
8
votes
4answers
4k views
asp.net MVC DisplayTemplates and EditorTemplate naming convention
I've got a couple of questions about the naming convention for the DisplayTemplates and EditorTemplates in MVC 2.
If for example I have a customer object with a child list of account how do I:
...
8
votes
5answers
5k views
Dynamic (Runtime Generated) Forms in ASP.Net MVC
This is a general design question: How would you implement a dynamic (runtime generated) form in ASP.Net MVC?
Here's the situation:
A site admin can define form parameters (fields, type of fields, ...
8
votes
7answers
4k views
Order of fields in Dynamic Data?
Does anybody know if it is possible to choose the order of the fields in Dynamic Data (of course, without customizing the templates of each table) ?
Thanks !
7
votes
7answers
248 views
How to work with dynamically created fields?
I have web layout, which can contains several links on it. Those links are dynamically created, using AJAX functions. And it works ok.
But, I don't know how can I work with those "dynamically created ...
7
votes
5answers
393 views
6
votes
1answer
153 views
Export to XML from Dynamic Data Site
I have to update an existing site that's based on DDS on top of the Entity Framework, and it uses three different database models from three different databases. And what it needs is a simple addition ...
6
votes
1answer
372 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
2answers
905 views
ASP.NET Dynamic Data TextSearch Custom Filter Template
I'm trying to implement a custom filter template for all text based searches and running into problems constructing the query. I've been following the instructions posted on this blog but not sure how ...
6
votes
3answers
245 views
When creating a new record, how do I fill some fields with values from the filter?
I'm working on an ASP.NET page, which basically is a quick hack around a database. It's used for an internal project and the site is set up in a way to provide several people read/write access to the ...
6
votes
4answers
818 views
Are there any alternative scaffolding frameworks to Asp.Net Dynamic Data?
I have been playing around with Dynamic Data but I find the filtering and navigation aspects basically useless for but the simplest scenarios, even in preview 4. I specifically want to be able to ...
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
2answers
139 views
ASP.NET Dynamic Data not seeing partial metadata “buddy” class
I have an ASP.NET 4 Dynamic Data web site that is running against a fairly simple set of database tables, exposed through an Entity Framework model in another assembly. I don't want to scaffold all of ...
5
votes
1answer
179 views
.NET Dynamic Data Many-To-Many with LINQ to SQL
We have a Dynamic Data site we're using for administration and we currently need a way to manage a many-to-many relationship. There are plenty of examples of how to do this using the Entity framework ...
5
votes
2answers
2k views
How to make the text bold of TextBlock in Silverlight?
I am developing window phone 7 application in C#. I am new to the window phone 7 application. I am also new to the silverlight. I want to generate the bold text of Texblock dynamically. I want to ...
5
votes
1answer
387 views
ASP.Net RADs: Dynamic Data alternatives
We have a set of tables and views that merely store some config data for embedded devices. this schema is change-prone and do not really required lots of logic, beyond some validation rules. so we ...
5
votes
3answers
310 views
Need advice on selecting a data access method
I am in the early stages of planning a conversion of a large classic ASP database application to ASP.Net and I'm having trouble picking out which data access method to use. I have played around with ...
4
votes
6answers
182 views
Why no variable size array in stack?
I don't really understand why I can't have a variable size array on the stack, so something like
foo(int n) {
int a[n];
}
As I understand the stack(-segment) of part of the data-segment and thus ...
4
votes
1answer
365 views
ASP.NET dynamic data: Table is not shown anymore after inserting data if FormView.Controls is accessed on Page.Initialized event
Lately, I received a bug report for Ninject.Web that it is not working properly together with ASP.NET dynamic data. The problem is that on postback (e.g. when Inserting, Deleting, Editing a record) ...
4
votes
1answer
200 views
How to write dynamic loader for bare-metal arm-application
I'm working on a project based on arm9 processor. We use only bare-metal without any operating system, so unfortunately we have no support for shared libraries / dynamic loader yet.
I would like to ...
4
votes
3answers
1k views
Dynamic background-image on body (ASP.NET)
I have a situation where I have ~10-20 different background images in a folder. When my site loads I need to choose a specific one of these images based upon some values from the database.
I thought ...
4
votes
4answers
261 views
Editing tables with ASP.Net - Quick 'n Dirty
I have need to provide a way for users to edit tables in ASP.Net. The tables are simple (no master/detail relationships), but there are likely to be a lot of them. What's the quickest/simplest way ...
4
votes
2answers
739 views
Is there a more easy way to create a WCF/OData Data Service Query Provider?
I have a simple little data model resembling the following:
InventoryContext
{
IEnumerable<Computer> GetComputers()
IEnumerable<Printer> GetPrinters()
}
Computer
{
public string ...
4
votes
4answers
258 views
CodeIgniter: Where should a particular functionality go?
Here is a quick overview of the controllers functionality in most of the application:
controller loads a specific model, gets data from it, formats the data and passes the formatted data to the ...
4
votes
2answers
1k views
Dynamic Data - How to show the Primary Key field in the List
I'm finally digging into Dynamic Data (long overdue). I notice that when I'm viewing the web site, on the main table lists, the primary key field is not displayed.
For example, I have a table that ...
4
votes
6answers
897 views
Dynamically store lines of strings using C
I want to store lines of strings dynamically using C language.
for e.g
sadasdasda5245sdf
fadfa6456
fasdf90-70=790
the number of such lines and the length of each line can be anything.Is there any ...
4
votes
2answers
2k views
ASP.NET Dynamic Data : How to Specify Sort Order of Items in Dropdown List
I am using ASP.NET dynamic data for the data adminstration tasks for a Silverlight app that I built. It saved a ton of time not having to write all of the admin screens you typically have to create ...
4
votes
5answers
987 views
Should I use SubSonic or Dynamic Data for a new CRUD asp.net application?
I need to throw together a quick CRUD asp.net site, but this may become a bigger application down the road. I have some experience with SubSonic, but it has been so long since I did a project with it ...
4
votes
2answers
1k views
Hierarchical data in a drop-down list on Dynamic Data site
I'm getting into dynamic data sites (remarkably powerful), and enjoying it. However, I have a requirement that I can't seem to meet. I have a self-joined category table (Id, Name, ParentId) to create ...
3
votes
1answer
50 views
Get the Class type for dynamic type?
I wrote some code :
public static object func()
{
return new { a = 1, b = 2 };
}
Console.WriteLine((func() as dynamic).a); //returns '1'.
If I can do : func() as dynamic so ...
3
votes
2answers
216 views
HDF5 C++ interface: writing dynamic 2D arrays
I am using the HDF5 C++ API to write 2D array dataset files. The HDF Group has an example to create a HDF5 file from a statically defined array size, which I've modified to suite my needs below. ...
3
votes
2answers
178 views
How to Find a Control Recursively
There are lots of examples on this and I'm pretty sound with the concept of using recursion to find the control. Once the control has been found on postback, is can be interacted with etc.
I have an ...
3
votes
1answer
84 views
Is it possible to add a database to a Dynamic Data Website (ASP.NET) at runtime?
i am implementing a web-based process management engine and i am facing some problems:
A process model has different object types with attributes, e.g.
Model "Recruitment":
Employee(Name, Birthday, ...
3
votes
2answers
590 views
Adding dynamic data (for data scaffolding) to an ASP.NET MVC 3 site
I'm doing my first ASP.NET MVC 3 project here, and since I need to support stored procedures, I decided to use Entity Framework 4.1 with the "database-first" approach, e.g. with all the EDMX goodness.
...
3
votes
1answer
424 views
legacyCasModel=“true” and dynamic data/operations
This is similar to Odd Exception in MVC 3 Project.
We have an ASP.NET 4.0 application running in full trust. We need to have the following line in our web.config, otherwise one of the libraries we ...
3
votes
2answers
156 views
How do I invoke a validation attribute for testing?
I am using the RegularExpressionAttribute from DataAnnotations for validation and would like to test my regex. Is there a way to invoke the attribute directly in a unit test?
I would like to be able ...
3
votes
2answers
442 views
In CAKEPHP can we dynamically change the table linked to a particular model?
Suppose I have 2 identical table having same structure(Call it 'tableA' & 'tableB').
I want to save certain data on table 'A' and certain data on table 'B'.
NOW I want to use the same MODEL for ...
3
votes
3answers
226 views
How to store custom user fields in database
I am trying to find a tutorial that will guide me on how user based custom fields works. Like in surveys sites, where they let users create custom fields and store them and more importantly store the ...
3
votes
1answer
400 views
dynamic Linq queries with Entity Framework
I am aware of few efforts in constructing Linq queries dynamically, such as this, and this.
None seem to be ideal as I would like to avoid putting expressions in a string, and omitting a where if it ...
3
votes
1answer
443 views
How can I reuse Model Metadata for custom View Models?
I'm working on an ASP.NET MVC 2 project with some business entities that have metadata dataannotations attributes applied to them (Validation attributes, Display attributes, etc.).
Something like:
...
3
votes
1answer
179 views
ASP.Net Dynamic Data or MVC2?
I've been working with web-forms and I want to switch to the MVC pattern based on some facts and other goodies that I see in it. I was going good with MVC review when I came across the latest Dynamic ...
3
votes
1answer
761 views
Dynamic VBO in OpenGL
What is the best way to store dynamic data for use in VBO (or vertex arrays). Only examples I saw were 2D static arrays and the pointer to that array was used with next parameters as stride, bytes ...