1
vote
3answers
40 views
castle IOC - resolving circular references
Hi
quick question for my MVP implementation:
currently I have the code below, in which both the presenter and view are resolved via the container.
Then the presenter calls View.I …
1
vote
1answer
25 views
can you use castle dynamic proxies on web services references?
Hi,
Is it possible to create a dynamic proxy on the a web service reference that has been added to a visual studio project?
I've added the web service reference in the normal way …
4
votes
2answers
299 views
Does Castle-Windsor support ForwardedTypes via XML configuration
I have a class that implements multiple interfaces.
I would like to register these interfaces via XML.
All I've found is documentation for the new Fluent Interface.
Is this option …
1
vote
1answer
28 views
Castle ActiveRecord: one-to-one
While playing around with one-to-one associations in castle activerecord I stumbled upon the following problem:
I'm trying to model a one-to-one relationship (user-userprofile in …
1
vote
4answers
201 views
How to overwrite a component with castle windsor?
I want to redefine an (default) implementation in a given windsor-container. Is that what OverWrite is for? Doesn't work, though.
container.Register(
Component …
0
votes
0answers
13 views
Castle NVelocity in the GAC
I've been trying castle nvelocity and every time I tried to initilize it, it throws the following error "The specified class for ResourceManager (NVelocity.Runtime.Resource.Resourc …
0
votes
1answer
134 views
Castle ActiveRecord “Could not compile the mapping document: (string)”
Hi I am having getting an exception when trying to initialize ActiveRecord and I cannot figure out what I am missing. I am trying to convince the company I work for to use Castle A …
0
votes
4answers
580 views
Lazy loading with NHibernate Castle Facility
Do I have to close the ISession's that are generated by Castle's ISessionManager for NHibernate? How do I handle transactions with those ISession's? I'm still quite new to NHiberna …
0
votes
1answer
80 views
Implementing INotifyPropertyChanged or similar custom event in base class
Is there a way to do this:
I need to develop the easiest way to support registering to property changes of some class. Apart from manual way of adding INotifyProperyChanged suppo …
0
votes
2answers
71 views
How to get reference to SqlConnection (or Connection string) in Castle ActiveRecord?
how can I get reference to current SqlConnection or Sqlconnection in config?
I found http://svn.castleproject.org:8080/svn/castle/trunk/ActiveRecord/Castle.ActiveRecord.Tests/Diff …
0
votes
3answers
53 views
Mark “deleted” instead of physical deletion with Castle ActiveRecord.
In my current project, we got a rather unusual request(to me). The client wants all the deletion procedure to mark a flag instead of physically delete the record from the database …
9
votes
6answers
371 views
Using MVC and fluent Nhibernate, how do I validate unique fields on my ViewModel before I bind them to my Domain Object and Save them?
I have a website where I allow users to create new Part records. I'm trying to figure out the best way to validate specific fields for uniqueness. I want to make sure that somebo …
0
votes
2answers
30 views
nhibernate not taking mappings from assembly
Hi
I'm using fnh and castle nhib facility.
I followed the advice from mike hadlow here: http://mikehadlow.blogspot.com/2009/01/integrating-fluent-nhibernate-and.html
here is my …
0
votes
1answer
16 views
Binding Monorail RadioFields to GenericLists
I have the following object which I bind to a Form in my view:
public class Foo
{
public List<Bar> Items { get; set; }
}
public class Bar
{
public List<string& …
4
votes
2answers
84 views
Help getting DI/IoC in house
Hi all,
I am trying to introduce DI/IoC programming methodology into our development group, but one of the developer asked the following question:
Why do we need it? Is there an …
