1
vote
1answer
48 views
+300
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 …
0
votes
0answers
25 views
db localization with ASP.NET MVC and Castle.ActiveRecord
I'm trying Castle.AR in an ASP.NET MVC 1 app. I want to store localized content on db.
I'm thinking of creating a single table with int stringId, string locale, string text, and a …
0
votes
0answers
8 views
Why is my Castle ActiveRecord HasMany /Any mapping causing FK Constraints?
I have three classes-- User, Team, and ProjectBid. Both User and Team inherit from a IProjectBidder interface. I want to map them in ActiveRecord something like this:
class Team …
0
votes
1answer
31 views
Can ActiveRecord HasMany/Belongs To use a non-PrimaryKey Column for the relation?
I'd like to have a parent-child hierarchy AND I'd like to have the concept of a "series-id" on the parent.
So the parent (if you updated it) would expire the old unique key.. keep …
0
votes
1answer
26 views
Sample Application(s) using Castle ActiveRecord?
I have been trying to track down some sample applications that are using Castle ActiveRecord.
Do you know of any good sample applications?
1
vote
1answer
194 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?
0
votes
1answer
91 views
Best Practices for Images in a Model with Castle ActiveRecord/MonoRail
Our "user" model needs a small profile picture on it, and I'm not entirely sure how to handle it. Of course we could just save it to a folder on disk and store the path/filename t …
0
votes
2answers
122 views
Castle ActiveRecord error “Session is closed”
Hello,
I'm trying to get started with Castle ActiveRecord but I'm stuck trying to make it work in an ASP.NET (MVC, if it matters) application.
In fact I'm getting an ObjectDisposed …
0
votes
2answers
246 views
How do I run an HqlBasedQuery that returns an unmapped list of objects using nHibernate?
I want to run a query against two tables (which happen to be mapped in ActiveRecord). The query returns a result list that cannot be mapped to an ActiveRecord object (as it is cus …
0
votes
1answer
385 views
Castle ActiveRecord / NHibernate optimization question
Hi,
I have the following structure: message (message table) may have multiple fields (fields table), and each field may have multiple subfields (stored in the same "fields" table …
0
votes
2answers
90 views
ActiveRecord Query (Castle, Performance)
I've 3 tables:
Parts: Name: internal name, Active: bool
Languages: list of languages (English, French, German, ....)
PartsTranslations: RealName and Id's of the other 2 tables.
…
0
votes
2answers
92 views
Castle Project ActiveRecord with XML
Can Castle ActiveRecord write to XML document? Any links to sample code?
1
vote
1answer
126 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 entit …
0
votes
2answers
375 views
The state of LINQ to NHibernate ActiveRecord
Hi,
Does anyone know if the LINQ to NHibernate ActiveRecord is ready for production?
I'm about to start a project that has some tight modelling deadlines. ActiveRecord looks like …
0
votes
1answer
98 views
how to convert the result in var to DataTable without Loop
How can i convert result in var to datatable without loop?
Following is my code:-
var result = PhysicianLookUp.Find(Where.PhysicianLookUp.DateTimeStamp.Ge(DateTimeStamp));
