Showing related tags and posts accross the entire site.
-
Hi, I am trying to improve performance of a big entity i have (simple select takes 8 seconds). It has too many fields (and some of it are very heavy) that I'm not using and I dont want to generate it. Is there any way to generate some of the fields and not all of it? thank's Itai
-
Hi, Is there a way in .net tiers that when you add additional columns and re-generate the framework that you know the areas in the application that are affected? Other frameworks I've used use fail to compile when you add columns and is usefull to know what areas of the application need updating...
-
I'm writing some code to get a list of entities that have been changed by the user, (as far as I am aware) I currently have to write a separate method for each Type I want to check (e.g. a method for Customer.HasDataChanged(), a method for Order.HasDataChanged()and a method for Product.HasDataChanged...
-
Hi, I have downloaded and created a website with netTiers and it's a very powerful piece of code. I am not new to nTier C# programming but I do have questions about CodeSmith/ netTiers and as such is there a FAQ anywhere? In particular little things like; How do I get netTiers to regenerate the entity...
-
This feature request is broken into two parts, the latter being dependant on the former: I've been thinking about how nice it would be if properties were indexed by name, e.g. MyEntity["Name"]. This would allow for easier use of entities in generic code, and would eliminate the need for...
-
I found this thread looking for a similar solution. Given the lack, here's what I did. Here is another option (use the attached files): create the journaling tables (you need to attach the journaling tables to a person id, i've included my person table in the code) generate the net tiers add...
-
Would it be possible to add a feature that would allow for audit tracking at the row level? I have a couple of tables that have CreatedBy/CreatedDate and ModifiedBy/ModifiedDate. It would be nice to have a simple hook available to allow for the setting of a username, and then the entity could figure...
-
I would like to generate components for use in the Web Client Software Factory... like the ObjectContainerDataSource wich is an refactored DataSource object using the View-Presenter pattern. The DataSource objects generated in NetTiers are implemented differently... Has anyone an idea how to "merge"...
-
A feature I've seen in a lot of DALs and have used in the past is the ability to pass an entity instance to a search method (e.g., Find(), GetPaged()) in order to pass search parameters. I find this approach particularly elegant, personally, and was surprised not to find it in .netTiers. I would see...