Tagged Questions
Castle ActiveRecord is an implementation of the ActiveRecord pattern for .NET. Castle ActiveRecord is built on top of NHibernate, but its attribute-based mapping frees the developer of writing XML for database-to-object mapping, which is needed when using NHibernate directly.
11
votes
3answers
2k views
Whats the pros and cons of using Castle Active Record vs Straight NHibernate?
Assuming that writing nhibernate mapping files is not a big issue....or polluting your domain objects with attributes is not a big issue either....
what are the pros and cons?
is there any ...
11
votes
5answers
2k views
Suggestions on how to map from Domain (ORM) objects to Data Transfer Objects (DTO)
The current system that I am working on makes use of Castle Activerecord to provide ORM (Object Relational Mapping) between the Domain objects and the database. This is all well and good and at most ...
7
votes
4answers
2k views
How do you execute a stored procedure using Castle ActiveRecord?
I believe there is a discussion on this very topic somewhere on the net but I lost the url and I am unable to find it via googling.
What I might try right now would be:
ISessionFactoryHolder ...
6
votes
1answer
104 views
Recommended approach to insert many rows with Castle ActiveRecord and ignore any dupes
I have a webmethod that inserts a bunch of recipes into a queue in the database (to store recipes the user is interested in cooking, similar to NetFlix's movie queue). The user is able to check off a ...
5
votes
1answer
428 views
A different object with same identifier was already associated with the session error
Scenario: I have a customer object with lazy loading enabled. I use that throughout the program to call a list of customer for a listbox. It has relationships to the Division_Customer_Rel, ...
5
votes
6answers
1k views
.NET ORM solution with class auto-generation: Subsonic, Castle AR, …?
I used to work with a custom data mapping library, and curently I'm trying to switch to a more widespread ORM solution.
After some experimentation, I refined my requirements to the following:
able ...
4
votes
1answer
65 views
NHibernate / Castle.ActiveRecord ; Session-Management ; WinForms
my first real (not test) NHibernate/Castle.ActiveRecord project is developing quickly.
I am working with NHibernate/Castle.ActiveRecord about one month now but still have not a real idea how to ...
4
votes
2answers
82 views
NHibernate Mapping Sanity Checks
Currently our new database design is changing rapidly and I don't always have time to keep up to date with the latest changes being made. Therefore I would like to create some basic integration tests ...
4
votes
3answers
284 views
Using Lite Version of Entity in nHibernate Relations?
Is it a good idea to create a lighter version of an Entity in some cases just for performance reason pointing to same table but with fewer columns mapped. E.g If I have a Contact Table which has 50 ...
4
votes
1answer
4k views
Nhibernate HQL where IN query
Im trying to return a SimpleQuery list that queries a single table and uses IN.
I can get this to work using
return new List<Jobs>(
...
4
votes
1answer
2k views
Parameterizing a HQL IN clause using HqlBasedQuery?
How do you pass a list of things for the 'in' clause in Nhibernate HQL?
e.g.
// data input from the user interface, not known at compile time
object[] productIds = {1, 17, 36, ... };
string ...
4
votes
1answer
2k views
nhibernate hql with named parameter
I have implemented a search function using Castel Active Record. I thought the code is simple enough but I kept getting
NHibernate.QueryParameterException : could not locate named parameter ...
4
votes
4answers
962 views
Howto automatically fill fields during save or update with Castle ActiveRecord
The Problem:
All tables in our database have CreatedDate, CreatedBy, ChangedDate, ChangedBy fields which I want to be set automatically when Saving / Updating an ActiveRecord entity.
My first try was ...
4
votes
2answers
2k views
NHibernate projection help
Im having a problem creating a projection for my nhibernate detachedcriteria object.
I have a class Spa which is linked to table Address.
Address has a field called City which is a string.
public ...
3
votes
1answer
2k views
Timeout exception when timeout set to infinite time
In my C# .NET 3.5 application I am using CastleProject ActiveRecord over NHibernate. This is desktop application using MS SQL Server 2008. I have set ADO command timeout to 0 to prevent timeout ...
3
votes
2answers
479 views
Is there any Castle ActiveRecord generator from Visual Studio 2010 Modeling Project?
Visual Studio 2010 includes a Modeling Project that lets to create UML diagrams like class diagram. We have plenty of class diagrams in VS 2010 Modeling Project and wish to generate Castle ...
3
votes
1answer
378 views
Unable to create schema with Castle ActiveRecord
I'm trying to get started with Castle ActiveRecord (following the "Getting started with ActiveRecord" screencast).
I created two ActiveRecord classes, one of them named User. I added the relevant ...
3
votes
1answer
204 views
Castle ActiveRecord and AfterLoad event
Castle ActiveRecord has BeforeLoad event but I need AfterLoad event too. I know it's possible to use NHibernate's PostLoad event. But how can I do this?
3
votes
1answer
535 views
Why do I need to set an alias to my projection if it's optional?
I'm reading the documentation about DetachedCriteria. The documentation clearly shows that setting an alias for your projection is optional. However, whenever I omit the alias my model properties ...
3
votes
3answers
658 views
Mapping Enums to Database with NHibernate/Castle ActiveRecord
There's a few other posts on mapping Enums to the DB with ActiveRecord, but none of them answer my question. I have an enum called OrderState:
public enum OrderState {InQueue, Ordered, Error, ...
3
votes
1answer
952 views
How to use Linq with Castle ActiveRecord
I am playing around with Castle ActiveRecord and noticed that the download included the file, Castle.ActiveRecord.Linq.dll. I haven't found any documentation for using Linq with ActiveRecord, only ...
3
votes
2answers
142 views
Castle ActiveRecord Table name conflict
When you run into a reserved word like "User" in NHibernate you would just put single quotes around the offending text and nHibernate will surround the text with square brackets for querying. My ...
3
votes
2answers
1k views
Failed Castle ActiveRecord TransactionScope causes future queries to be invalid
I am trying to solve an issue when using a Castle ActiveRecord TransactionScope which is rolled back.
After the rollback, I am unable to query the Dog table. The "Dog.FindFirst()" line fails with ...
3
votes
2answers
2k views
NHibernate.Bytecode.UnableToLoadProxyFactoryFactoryException
I have the following code set up in my Startup
IDictionary<string, string> properties = new Dictionary<string, string>();
properties.Add("connection.driver_class", ...
3
votes
2answers
725 views
Using Castle ActiveRecord with Fluent NHibernate?
Has anyone gotten Fluent NHibernate to work with Castle ActiveRecord?
I am particularly interested in Automapping to configure entities for use with the ActiveRecordMediator repository.
3
votes
3answers
378 views
NHibernate EventListeners - getting the value of a property of the entity being saved
I'm implementing a custom EventListener to save auditing information in NHibernate.
I'm currently extending DefaultSaveOrUpdateEventListener, overriding PerformSaveOrUpdate, going through the ...
3
votes
1answer
694 views
SubSonic vs. Castle ActiveRecord
For an upcoming project C# code needs to be written around a legacy Oracle database. It will be very data centric, because most of the code will deal with data manipulation -- there are almost no ...
3
votes
2answers
1k views
How to use XMLSerializer with a Castle ActiveRecord containing an IList<T> member
I am trying to use the XMLSerializer with a castle active record class which looks like the following:
[ActiveRecord("Model")]
public class DataModel : ActiveRecordBase
{
private ...
3
votes
4answers
1k views
NHibernate / ActiveRecord: How to set foreign key without getting entire object?
Let's say I've got the following ActiveRecord class:
[ActiveRecord]
public class Account
{
...
[BelongsTo("CustomerId")]
public Customer Customer { get; set; }
}
Currently, to set the ...
3
votes
6answers
829 views
Is ActiveRecord bad practice?
I'm starting a new project and i've recently found castle project activerecord, which seems like a GREAT solution, but at the same time, it looks like something realy unconventional.
I was wondering, ...
3
votes
2answers
2k views
Help with ActiveRecord exception “Failed to lazily initialize a collection - no session”
I am writing a web app using Castle ActiveRecord, and I keep getting this exception whenever I try to access a lazy loaded list of related objects. Here is my code:
using(new SessionScope())
...
3
votes
3answers
7k views
Eager loading of lazy loaded entities in nHibernate using ActiveRecord
I'm working on a project that has a rich object model with various sets of aggregate roots.
We're using the Castle stack (Monorail through to nHibernate with ActiveRecord).
We have marked the ...
3
votes
1answer
628 views
which open source project(s) uses the castle activerecord?
Rather than the demos can you suggest any open source projects using castle activerecord for code study?
3
votes
1answer
678 views
Castle/ Active Records: How do you count objects?
I'm trying to do a simple "Select Count(*) from PRODUCTS where date > xxx" with Castle on NHibernate.
If I was directly using NHibernate, I could reuse this question answers but unfortunately I see ...
3
votes
3answers
2k views
C# + Castle ActiveRecord: HasAndBelongsToMany and collections
Let's say I have many-to-many relationship (using the ActiveRecord attribute HasAndBelongsToMany) between Posts and Tags (domain object names changed to protect the innocent), and I wanted a method ...
2
votes
1answer
109 views
NHibernate + ActiveRecord + PostgreSQL = memoryexception
I have a system in winforms C#.Net 2.0 with ActiveRecord + NHibernate communicating with a PostgreSQL 9 database.
When user open the system, starts the communication with the DB by a new ...
2
votes
1answer
144 views
ActiveRecord with mvc3
I have an application built in MVC3 in C#.
Use ActiveRecord 3.0 and NHibernate 3.1 without problems, but I needed to improve the performance and I put in the relationships [HasMany(Lazy=true)] the ...
2
votes
1answer
60 views
Enumerate through a DictionaryAdapter passed to OnFlushDirty
I am attempting to use the OnFlushDirty method of a Castle.ActiveRecord object in order to implement generic auditing of changes:
protected override bool OnFlushDirty(object id,
...
2
votes
0answers
191 views
ActiveRecord, NHibernate and PostgreSQL
I'm kinda stuck here and can't get this to work. It seems so simple, but I must be doing something incredibly wrong.
I have a simple class to test NHibernate Active Record and PostgreSQL, take a look
...
2
votes
1answer
51 views
Castle ActiveRecord - Issue With Setter
Ok, so im starting a new project and decided to use a ORM tool (as im so bored with writing it manually)
So im starting new with Castle AR,
So in my domain object ive the following
[ActiveRecord]
...
2
votes
1answer
140 views
ActiveRecord (NHibernate) Eager Loading Bug?
I have two classes: File, Applicant and I'm using ActiveRecord 3.0 RC (NHibernate 3.1.0.4000).
File
[ActiveRecord("`File`", Lazy = true)]
public class File : TestProDb<File> {
...
2
votes
0answers
238 views
Cast as decimal(38,12) in HQL
I'm using NHibernate with Active Record and I'm trying to sum up a column and return the result. The column is a decimal(38,12). However when I do this I get the SQL Exception:
"Arithmetic overflow ...
2
votes
1answer
565 views
Invalid index n for this SqlParameterCollection with Count=m
I'm getting this nasty error in Castle Active Record (wrapped around NHibernate) when I try to save a class:
Invalid index n for this SqlParameterCollection with Count=m
I know that this error is ...
2
votes
1answer
125 views
Castle ActiveRecord SessionScopeWebModule exception handling
I have a Web app with SessionScopeWebModule enabled, and I wonder how
to best handle business exceptions (not Hibernate / DB exceptions).
I believe AR 2.0 SessionScopeWebModule implicitly implements
...
2
votes
3answers
362 views
How do you optimize Castle ActiveRecord calls
How do you optimize ActiveRecord calls in your ASP.NET MVC 2 web applications ?
I'm sitting in front of my project and all is fine until I start to fill in data. Like a lot of projects I have a data ...
2
votes
1answer
640 views
Castle Active Record Multiple Database Connections (Oracle and SQL)
Scenario: I have an application that pulls data from a SQL database as well as an Oracle database. I have NHibernate implemented for the SQL side and a co-worker already has a working implementation ...
2
votes
2answers
138 views
How can you stop NHibernate (via ActiveRecord) adding this_. to a table name in a formula
I'm using Castle ActiveRecord which uses NHibernate underneath and I've added a property with a formula as follows to one of my entities:
[Property(Formula = "CAST((select count(*) from [User] as u ...
2
votes
2answers
143 views
Is there any considerations when using log4net in an application that uses NHibernate or Castle ActiveRecord?
I used log4net in a sample application based on tutorial here. It works very well. But when I use same code and configuration in my main application, nothing works. My application is based on Castle ...
2
votes
1answer
32 views
Invalid primary key datatype [int]
I am using Afo Castle AR Code Generator v1.0.0.4 at first I was receiving errors for using tinyint as a primary key so I changed those to int but the only error I have left and can't seem to get rid ...
2
votes
1answer
196 views
accessing a table where the column name is a reserved keyword
I am setting up Castle Active Record to access a legacy database on an Microsoft SQL Server. The table in question has a column named function. When I attampt to load a record it gives me this ...