Tagged Questions
The .nettiers tag has no wiki summary.
5
votes
1answer
139 views
What is use of “??” [closed]
Possible Duplicate:
What is the “??” operator for?
Please explain me what is use of "??" in below code and what is "??" used for.
if ((this.OrderDate ?? DateTime.MinValue) > ...
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
2answers
528 views
How to mock or stub a .netTiers generated DataRepository object
I am using Rhino mocks for unit test mocking of objects. Our DAL uses codesmith to generate code from .netTiers templates, which creates these DataRepository classes that contain all the methods for ...
0
votes
1answer
36 views
ASP.Net project stops behaving properly when transfered to a 64bit Win2k8 server
I am having a very strange problem with an ASP.Net project using an Entity Layer, a Data Layer and a Service Layer generated using .netTiers 2.3.1. The project runs fine on my machine (32 bit WinXP ...
0
votes
0answers
31 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
123 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
39 views
does anyone knows how to setup .nettiers with sharepoint 2010 please?
does anyone knows how to setup .nettiers with sharepoint 2010 please?
0
votes
1answer
698 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
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
499 views
Unit testing with generated DAL code
I use a code generator (CodeSmith with .NetTiers template) to generate all the DAL code. I write unit tests for my code (business layer), and these tests are becoming pretty slow to run. The problem ...
0
votes
2answers
896 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 ...
0
votes
1answer
671 views
StackOverflowException serializing a .netTiers entity
I have a simple WCF service:
public Order[] GetOrdersByStatus(int statusid)
{
OrderService os = new OrderService();
TList<Order> orders = os.GetByOrderStateID(statusid);
return ...
-1
votes
2answers
90 views
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 ...