Tagged Questions
.netTiers is a set of open source code generation templates that simplify the tasks of creating customized Application Tiers for your Microsoft.Net applications in just a few minutes.
8
votes
6answers
2k views
Should I start using LINQ To SQL?
Currently I am using NetTiers to generate my data access layer and service layer. I have been using NetTiers for over 2 years and have found it to be very useful. At some point I need to look at LINQ ...
4
votes
2answers
297 views
ASP.NET ORM for High Scalable Websites
Which is the best option for High Scalable Websites or Enterprise Applications:
LBLGen
.NetTiers
LinqToSQL
NHybernate
Repository Pattern (CodePlex)
If any other available let me know.
2
votes
1answer
103 views
Advice regarding modification to NetTiers
I'm assesing using NetTiers for my next project.
The issue is:
Every table in my schema has a field AccountId. With every request to the DAL I want it to be a requirement that the AccountId is ...
2
votes
3answers
377 views
executing queries with datetime in WHERE clause
I use sql server 2008 R2 as a data store.
Until now on the test machine I had the english version of the software and used to make queries formatting the datetime field as
...
2
votes
6answers
672 views
How Do SQL Transactions Work?
I have not been working in SQL too long, but I thought I understood that by wrapping SQL statements inside a transaction, all the statements completed, or none of them did. Here is my problem. I have ...
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
4answers
1k views
Anybody using .netTiers?
I'm considering adopting .nettiers for a new project as it seems to provide a lot of functionality I could use.
Is anybody using it in anger (I'm getting the feeling it hasn't got the following it ...
1
vote
1answer
54 views
nettiers data class library not recognized
I needed to make a console application using nettiers class libraries. I created a new Console Application project, added references to all the libraries from NetTiers and created an app.config file ...
1
vote
0answers
66 views
Using Machine.Config and Global Assembly Cache for ActiveX controls - Recommended or not?
I'm currently working with an intranet site which requires the use of an ActiveX control to do some Client side functions. However the app normally reads some settings from the Web.Config (We are ...
1
vote
1answer
221 views
Nettiers WPF MVVM
Can We use Nettiers in WPF?
or does codesmith have any template for code generation for WPF and MVVM design pattern?
i was using NetTiers And CodeSmith For Windows And Asp.net APplications.
Does it ...
1
vote
1answer
318 views
How do I get a scalar value from a stored proc using Nettiers
I have a really simple stored procedure that looks like this:
CREATE PROCEDURE _Visitor_GetVisitorIDByVisitorGUID
(
@VisitorGUID AS UNIQUEIDENTIFIER
)
AS
DECLARE @VisitorID AS bigint
SELECT ...
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
24 views
Nettiers Mock scenario
Does anybody have a good example of where you're using Nettiers and are able to do some form of mocking for the purposes of Unit testing. Battling to get my head around the idea.
My idea is to create ...
0
votes
1answer
57 views
Whither NetTiers?
I used NetTiers in a number of projects a job or two back. I found it extremely useful for generating back-end interfaces in ASP.NET webforms. The business and data layers were also pretty sweet. I ...
0
votes
0answers
30 views
.nettiers Changing connections at run time
Are there any .netTiers ninjas out there that know how to change the database connection at run time?
I've found the following article on their documentation:
http://www.nettiers.com/DataLayer.ashx
...
0
votes
1answer
172 views
weird exception error in nettiers generated code
I'm having weird issues with code generated with netTiers. I've tried to use the framework provided in a simple form to save information on one of the entities created.
Here is the method I'm ...
0
votes
1answer
68 views
Validation App Block validating NetTiers entities
Here is my question: does anyone know how to set up custom validation for NetTiers entities?
I have a NetTiers web solution that was generated with the EntLib 4.1 validation app block. The actual ...
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
0answers
69 views
Copy method throws error “Item has already been added. Key in dictionary” in Nettiers method while calling BeginEdit() of IEditableObject
When my BeingEdit() method gets triggered for my Nettiers entity, it calls copy method to copy all its children. The children collection is heavy with so many of them.
Inside copy() method, it ...
0
votes
1answer
81 views
netTiers causes FatalExecutionEngineError in WPF
I created a brand new WpfApplication, referenced netTiers classes, stuck a DataGrid on MainWindow, and set DataGrid.ItemsSource = DataRepository.SomeViewProvider.GetAll().
This causes the returned ...
0
votes
1answer
118 views
Can the .netTiers framework be used with windows forms [closed]
Does nettiers available for windows form?
it is very good template for codesmith code generator.
asked because of :
this
http://community.codesmithtools.com/nettiers/f/16/p/11316/43250.aspx#43250
if ...
0
votes
1answer
111 views
How can I configure a netTiers datasource to use a RouteParameter instead of a QueryStringParameter?
NetTiers works fantastic out of the box using querystrings. Eg:
<data:AspnetUsersDataSource ID="AspnetUsersDataSource" runat="server" SelectMethod="GetByUserId">
<Parameters>
...
0
votes
1answer
140 views
Error using nservicebus with nettiers
I'm using the nservicebus springbuilder(below) with compiles and runs fine. However once I add a single DataRepository entry in the code to call nettiers the project compiles but throws an exception ...
0
votes
1answer
585 views
NserviceBus throws exception when referencing a Nettiers assembly
We use nettiers as a our data layer, and we recently have started looking at using NServiceBus, but we have hit a wall.
We have a windows service which hosts NSB and references our Nettiers assembly.
...
0
votes
1answer
55 views
selecting items from a NetTiers EntityGridView
I am using a nettiers generated EntityGridView, and I've added a method for OnSelectedIndexChanged. In that method, How do I get the currently selected entity from the EntityGridView?
0
votes
1answer
228 views
An Open Source Project Made With Nettiers
Do you know any open source web application, which used nettiers as DAL inside the project?
I want to see that, how thay use it in their's project.
0
votes
2answers
807 views
Want a Strongly Typed Result from a JOIN in .netTiers
Given a query like:
SELECT table1.field1 FirstField, table2.field2 SecondField
FROM table1
INNER JOIN table2 ON table1.FK = table2.PK
WHERE table1.somefield = 'somevalue';
My objective ...
0
votes
1answer
697 views
Set Command Timeout or ConnectionTimeout with NetTiers
Does anyone know how to set the ConnectionTimeout and/or CommandTimeout in NetTiers as I have a long running query that is timing out. I expect the query to be long running, its not a performance ...
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
1k views
Inner joins with NetTiers
I am performing a review on different kind of ORM tooling and DAL generators today. One of them is NetTiers.
I have a classic DB model with customer, order, orderdetail, etc..
I want to perform a ...
0
votes
3answers
852 views
Has anyone used any .Net code generation frameworks in Mono? (Subsonic, .netTiers, etc..)
Mono appears to have really come a log way since the last time I really used it. I'm interested in doing some ASP.Net development using Mono. I have used .netTiers/CodeSmith at work and really enjoy ...
0
votes
2answers
895 views
.netTiers vs SubSonic
I had some time this afternoon to run a head to head comparison between netTiers and SubSonic.
I used code generated using SubStage (part of the SubSonic 2.1 release) and I used RepositoryRecord as ...
-1
votes
2answers
68 views
Mocking .nettiers DataRepository calls
I have a project in which I am using .nettiers generated code as my DAL.
At the moment, my tests consist of physically setting up test data in the database for each test, then allowing the nettiers ...
-1
votes
4answers
112 views
what would make the “this” clause different?
I have the following code:
CustomerService service;
public CustomerService Service
{
get
{
if (this.service == null)
{
this.service = new CustomerService();
...