Questions tagged [.nettiers]

.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.

The official product page can be found here.

58 questions
0
votes
1 answer

Using reflection to Grab NetTiers TList and then how to iterate that list

The below code works without issue, it will grab the exact TList i'm looking for. But I have no clue how to iterate it. What i'm looking for is either how to turn my var dataTableObject into a DataTable or how to iterate the var and then use…
user222427
0
votes
2 answers

What does the icon with the white sheet of paper with the blue arrow pointing to it to the right in visual studio 2012

The icon is in the solution explorer next to one of the generated classes
greb22
  • 11
  • 2
0
votes
2 answers

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. the service is throwing an exception when the…
IGoor
  • 47
  • 1
  • 7
0
votes
1 answer

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?
stephenbayer
  • 12,373
  • 15
  • 63
  • 98
0
votes
1 answer

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.
mavera
  • 3,171
  • 7
  • 45
  • 58
0
votes
1 answer

cannot open database login failed for user;asp.net;codesmith

A random error happens on the production environment cannot open database login failed for user I'm using windows authentication and the code generated by the codesmith netTiers and the production environment has Windows 2008 R2 and SQL server…
AMH
  • 1
  • 1
0
votes
1 answer

can we select specific columns with nettiers find() method

I am using nettiers for one of my clients. I have noticed that when I call find() with search parameters, the execution gets time out. When I saw the query using profiler, it makes use of all the columns. i.e. select * from table. Can we fetch…
VJOY
  • 3,752
  • 12
  • 57
  • 90
0
votes
1 answer

How to set CommandTimeout or ConnectionTimeout in 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 problem as such, I just need to know if anyone knows…
Mike D
  • 220
  • 1
  • 4
  • 12
0
votes
3 answers

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 a provider section to be added at app.config, and i…
edein
-1
votes
1 answer

Code Smith error - Failed to compare two elements in the array

We use a combination of codesmith and net tiers to generate Data Access Layer code for our asp.net website. Suddenly today when trying to generate the code i get the following error. Generating project "C:\Source\Trunk\Project1V1.0\Project1.csp"…
Kranthi
  • 1
  • 1
-1
votes
1 answer

I'm creating an ASP.NET website for selling furniture and I am confused about creating my database

My Asp template I'm creating my first ASP.NET website for selling furniture and I am confused about creating my database. I want to sell products for many categories like bedrooms, and every user can add products to cart; here is my master page…
Cs_Stu
  • 21
-1
votes
5 answers

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(); } return this.service; } } public…
user384080
  • 4,576
  • 15
  • 64
  • 96
-2
votes
2 answers

Implement second level cache in ASP.Net

Is there any way to use caching in ASP.Net except SQL Server second level cache. As it is the first time to work with caching I want any way with an example. I have found that NHibernate implements this but we are using .netTiers as an application…
1 2 3
4