Tagged Questions

CodeSmith Generator is a template driven source code generator that automates the creation of common application source code for any language.

learn more… | top users | synonyms

11
votes
2answers
2k views

Visual Studio T4 vs CodeSmith

I've been using CodeSmith for the past 2 years and love what it does for me. However, I also know about T4 which is built in to Visual Studio and can do some pretty cool stuff too. Based on ...
5
votes
6answers
2k views

Free Codesmith alternatives?

Are there any free/open source alternatives to Codesmith that would be comparable in features and generate .NET code?
5
votes
3answers
2k views

Using NHibernate with Codesmith to generate ORM

Just started learning NHiberate. It seems rather tedious to write proper hbm.xml config files for each database table. The question is can NHibernate read into tables and automatically retrieve ...
5
votes
7answers
3k views

Is Codesmith a viable ORM tool (or should I stick with a true ORM)

I'm shopping for an ORM tool. I'm agonizing over the purchase of either CodeSmith (which is currently available at a substantial discount) versus an ORM tool. LINQ to SQL is off my list; SubSonic ...
3
votes
4answers
163 views

How to generate code based on another class?

To create our test data, we use the following variation of the Builder pattern (simplified example!): Sample class: public class Person { public string Name { get; set; } public string ...
3
votes
3answers
2k views

CodeSmith v.s. T4: .netTiers level suite

Has someone ported the netTiers template set to Visual Studio's T4 templates? Or is there a system of similar scope? Does anyone use T4 in a work environment? What (if any) major differences are there ...
3
votes
5answers
793 views

Codesmith resources

I use Codesmith to create our code generation templates and have had success in learning how to use the tool by looking at example templates and the built in documentation. However I was wondering if ...
2
votes
1answer
146 views

What code would you consider using a code generator like CodeSmith for?

I use CodeSmith for the PLINQO templates, to build my DAL from my DB objects; it works great! I believe that's the primary use of code generator apps, but I'm curious... what other code would you ...
2
votes
4answers
888 views

Visual Studio solution structure using Codesmith frameworks (NetTiers / Plinqo)

I have been using the Codesmith framework NetTiers to generate a DAL etc., into a folder called, say, 'NetTiers', outside my main project's folder, and referencing the DLLs within that folder from my ...
2
votes
5answers
476 views

ORM Tool - Crossroads?

Hi I seem to be at an ORM Tool crossroad and would like some advice of people who have faced a similar challenge. In the past I have been using CodeSmith with NetTiers Templates to generate my DAL all ...
2
votes
4answers
209 views

How to Do a Merge for XML files in Code Smith?

I am using CodeSmith to Generate The Files in my Project. It has functionalities to Merge the C#/VB & SQL files using Insert Region & Preserve Region Strategies. How Can I extend these to ...
1
vote
1answer
131 views

Which Framework Should I Generate For easy JSON compliance using CodeSmith

Having just managed to score a copy of CodeSmith 5.2 at the same time that I'm starting on a web development project in ASP.NET I thought I would combine the two. The site will need to make use of ...
1
vote
1answer
263 views

C# CodeSmith LINQ to SQL question DELETE Operation

In a project I am working on I need to delete a "user" from my database. This "user" has two tables that reference it's foreign key. When hard deleting I am trying to delete all records from Table A ...
1
vote
1answer
264 views

Generate code from SPs using codesmith or MyGeneration?

I have CodeSmith and MyGeneration tools. I have SPs in SQL server. I want generate VB.Net code for SPs (not for Tables). Which templates will support for this? Please share if you know any templates ...
1
vote
1answer
70 views

Preserve SQL with CodeSmith

How would I create a procedure with a PRESERVE region like this: CREATE PROCEDURE RunSQL AS --region Custom processing --endregion SELECT * FROM SomeTable GO
1
vote
3answers
128 views

Are There Reasons To Not Use CustomAttributes?

This is mostly a request for comments if there is a reason I should not go down this road. I have a multi-tierd, CodeSmith generated application. At the UI level there need to be some fields that are ...
1
vote
1answer
482 views

Anyone have a UITypeEditor that picks System.Type instances?

I am busy writing a CodeSmith template that has one of its properties as type System.Type. I want to be able to select the type using a UI that picks the assembly, loads the assembly and then displays ...
1
vote
3answers
748 views

NHibernate, Codesmith and project physical architecture

Recently I tried CodeSmith templates for NHibernate. As many of you might watched, there is a video explaining how to create a Petshop.Data using these templates. My question is what is the correct ...
0
votes
0answers
24 views

How to call SQL Function directly from CodeSmith generated service dlls

In a project we are using CodeSmith to generate database layer, Codesmith seperate creates service classes for each SQL View and SQL Table, using these service classes we can call StoredProcedures ...
0
votes
1answer
32 views

Where I can download MySQLSchemaProvider for Codesmith Generator?

I currently need to work with MYSQL so I wonder where I can download the latest version of MySQLSchemaProvider. I am using CodeSmith Generator version version: 5.3.4. Thanks
0
votes
1answer
28 views

How do I navigate to the parent property (xmlproperty) - Codesmith

I have the following xml: <?xml version="1.0"?> <PurchaseOrder xmlns="http://www.codesmithtools.com/purchaseorder"> <ShipTo Name="Eric J. Smith"> <Line1>123 Test ...
0
votes
0answers
51 views

Determine structure of DB2 zOS StoredProcedure result set

I'm trying to write a DB2 zOS provider for codesmith and am running into a problem getting the information on the results of a stored procedure. There is an existing provider written for the iSeries ...
0
votes
1answer
53 views

can you use plinqo with T4 or other code generation tools???

I want to use plinqo for my personal project, but seem like you need codesmith pro. its 299 bucks. is there a way we can use it with other code generation tools? I only need it for linq many to ...
0
votes
1answer
89 views

Issue with net tiers not generating custom stored procedures

I am using Net Tiers and codesmiths to generate my data layer. For some strange reason, it is no longer generating my custom stored procedures. When I view the report at the end of the generation, it ...
0
votes
2answers
72 views

A few questions about CodeSmith

I have recently started studying CodeSmith and I have a few questions. I would like to make a template with 4 blocks. Each block will be selected by the user. How can I set the text block (function) ...
0
votes
1answer
41 views

What is the point of ParameterSchema.AllowDBNull in CodeSmith?

I'm currently trying to use write a simple C# wrapper class for all the stored procedures in a database. For this I'm using CodeSmith and in particular the SchemaExplorer. While iterating through ...
0
votes
1answer
122 views

Postgresql schema povider

I have a ASP.NET project that is used MS SQL db. DB access code is generated using CodeSmith .netTiers. Now, project will be merged with another and should use PostgreSQL db. I am looking for ...
0
votes
1answer
272 views

CodeSmith Nhibernate

Im developing a multithreading application using code smith Nhibernate Template, i read that i must use a session or every thread, problem is i dont know how to get a new session from CodeSmith ...
0
votes
1answer
223 views

CodeSmith: How to reference an assembly

using code smith, i'm trying to reference an assembly that i'm generating as output. the idea is to create the assembly in a build step, then in a later build step reference this assembly for further ...
0
votes
1answer
136 views

Getting the full .NET type name in codesmith

Is there any way of getting the full .NET type name when writing a codesmith template? GetCSharpVariableType seems to return aliases only. Since I'm using reflection, I need to be able to generate ...
0
votes
2answers
163 views

Where can I find Codesmith templates?

I am new to Codesmith. Are there any templates for Windows Forms and WPF? Please Help.
0
votes
1answer
159 views

PLINQO Primary key AND index problem

I've two tables, Profile and ProfileCategory ProfileId INT IX UserId UNIQUEIDENTIFIER PK (For one-to-one mapping with aspnet_membership) CompanyName Description ProfileCategory CategoryId ProfileId ...
0
votes
1answer
54 views

PLINQO Stop generation on build class library

I've just started using PLINQO which looks really good so far. The only problem I have is whilst I'm doing custom amends on the entities I rebuild the contained class library and codesmith wants to ...
0
votes
2answers
228 views

How to add generated files to multiple projects using CodeSmith tools

I'm using CodeSmith on my current project and I'm trying to figure out an issue. For my CodeSmith project (.csp) I can select an option to have it automatically add all generated files to the current ...
0
votes
3answers
403 views

Generate Info (wrapper) Class from stored procedure

I am in a crucial project and I am trying to speed up the development phase by using codesmith for generating the business class DAL and info class for the tables of my project. There are about 50 ...
0
votes
2answers
210 views

Has anyone suffered any performance issues with CodeSmith or MyGeneration

I am new to both these pieces of software. A colleague of mine recommended these two to me. Just wanted to know if the stored procedure code they produce have any performance problems? I would like to ...
0
votes
2answers
493 views

is it possible to use MVP pattern with Codesmith Ntier or PLINQO Template

Currently we are working on ASP .net application and i would prefer to go ahead with MVP pattern (for UI) due to several advantage it provides, But the con of going ahead with that approach is too ...
0
votes
2answers
217 views

ORM's for .net 2.0 with tool and/or codesmith support but without xml

I'm searching for an ORM framework for .NET 2.0 (has to run on Windows 2000, so 3.0/3.5 is out) that is entirely code configured, and does not require XML. I need this to be "hard coded" in the app ...
0
votes
1answer
251 views

Can anyone explain parameters in CodeSmith SchemaExplorer.ViewSchema Constructor?

From CodeSmith API help [C#] public ViewSchema( DatabaseSchema DatabaseSchema, string String, string String, DateTime DateTime, ExtendedProperty[] ExtendedProperty[] ); Parameters ...
0
votes
3answers
171 views

Is there any class similar to ProvidersHelper but not for web?

Is there any class similar to ProvidersHelper but not for web? I want to instantiate a collection of providers. Actually I'm using CodeSmith & Nettiers, and the db provider is Oracle. It generated ...
0
votes
2answers
987 views

CodeSmith template for NHibernate multiple databases

Is there any codesmith template for NHibernate that handles multiple databases connection?
0
votes
3answers
703 views

Code generator (.net)

Do you have any experience with T4 and T4 Editor? Can you compare it to CodeSmith or MyGeneration? What code generators do you use? What do you recommend? I want to use it for generatig of SPs. Is ...