csla

CSLA Master Class

Hi guys! As anyone ever assisted the CSLA Master Class from Rockford Lhotka? (www). It seems a good way to enforce my OO knowledge in the asp.net field, but since I have to consider the flight to Atlanta and the course's price ($ 2.500), I'm not convinced yet. Also, I could barrely find any feedback on the web. Could anyone share some...

Does anyone have any real-world experience of CSLA?

The main web application of my company is crying out for a nifty set of libraries to make it in some way maintainable and scalable and one of my colleagues has suggested CSLA. So I've bought the book but as : programmers don't read books anymore I wanted to gauge the SOFlow community's opinion of it. So here are my questions. Ho...

Experience with CSLA in a WPF/WCF application

Has anyone used CSLA in an application that has a WPF front end and a WCF wire for entities? If so, which "entity framework" did you use? (nHibernate, Linq, etc...) What were the hang-ups? What did it help you with? I am concerned with implementing this for an application, not knowing how data-binding, validation with UI/entities, or ...

Have you ever used CSLA?

Have you ever used CSLA and if so what are yout thoughts? I am starting a new contract for a company that uses CSLA and NHibernate and wanted some opinions or insights into the framework. ...

How do I get the MyGeneration Xsd3b data types to work

I am using MyGeneration 1.3.0.3 with the Xsd3b plugin. I am trying to generate some CSLA 3.5 C# classes from an Xsd3b XML file that I extracted from my SQL Server database. The template language exposes a number of fileds for each column, including a DbTargetType and a LanguageType. My problem is that the DbTargetType and LanguageType ...

Model Framework for ASP .NET / MVC

I have been using the CSLA framework for couple of years now for windows applications. With ASP .NET MVC / AJAX / jQuery out now, would there be any use for the CSLA framework (which is strongly Object Oriented ) in web apps? ...

Is a formal application framework too much?

Our shop designs and create custom software applications for a vareity of vertical industies. We currently use a modified version of the Csla framework for most of our development. It's a great framework, supports a vareity of ways to communicate with a database, directly, remoting, WCF and so on. It offers a ton of features, many o...

Hanging Linq query with Guid.Empty in the where expression

I'm having an issue with the following code: private void DataPortal_Fetch(TaskCriteria criteria) { using (var ctx = ContextManager<Gimli.Data.GimliDataContext> .GetManager(Database.ApplicationConnection, false)) { this.RaiseListChangedEvents = false; this.IsReadOnly = ...

CSLA .NET Architecture

Is CSLA.NET architecture is a good choice in an enterprise level application? ...

Unit test and Web test on the .NET Framework?

I would like to know what a Unit test and Web Test is in the .NET Framework and What are the difference between these tests? and How does it affect with the implementation of the CSLA.NET? Please help, thanks! ...

How can I learn CSLA.NET Fast?

I'd like to learn CSLA.NET quickly. What advice do you have? ...

Adding objects to a SortedBindingList

I have a WinForm containing a DataGridView with a list of members in a group. The form contains functionality (bindingNavigator) for adding new members and changing the role of the current members. I want to be albe to sort the members and implemented this by introducing a SortedBindingList to the mix. However this has the unfortunate ef...

How to config CSLA for n-Tier deployment scenarios?

Need Quick and fast list of configuration changes required while moving from single-tier to multi-tier in CSLA deployment Detailed explanation of the above checklist A How to list ...

How do you test your business objects?

I am wanting to implement automated testing, using the Microsoft testing framework in Visual Studio, for my software development projects. I have created some tests, and all in all, it's pretty easy to use. What are some better practices for testing business objects, more specifically ones that read and write to a database. Is it best ...

Disabling a TextBox in C# .NET using CSLA

I am trying to disable a number of text boxes intended for displaying data (not edit) in one of my UserControls. However, for some reason I can not get the textBoxes to disable properly. I've set "ApplyAuthorization on readWriteAuthorization" to true and the textBoxes are databound to the correct properties. I've also added the followi...

Dynamic LINQ & CSLA BusinessListBase

I got a problem that is just killing me. One of my CSLA object (let's say Parent) has many children (let's call them Children - a list of Child). Parent is a Editable Root (BusinessBase) and Children is an Editable Child List (BusinessListBase) and Child is Editable Child. What I am trying to do is to do this: Parent x = Parent.GetPar...

CSLA 3.6 - Database name not found in config file

Hi There, I'm using CSLA 3.6 I keep getting the error: DataPortal.Fetch failed (Database name not found in config file (AdventureWorksLT)) My Dataportal_Fetch code looks like this : Private Overloads Sub DataPortal_Fetch(ByVal criteria As SingleCriteria(Of Customer, Integer)) Using ctx = ContextManager(Of DalLinq.AdventureWorksD...

Anyone have experience using CSLA under Mono?

I have a great deal of respect for Mono and CSLA. I would like to utilize CSLA on non-Microsoft operating systems. I accept the fact that Mono will always be two steps behind Microsoft, but Mono supports enough of the .Net framework to facilitate a wide range of interesting applications. I also realize that Mono does not support many ...

Is Asp.Net MVC + CSLA + DDD Possible

I was asked to review a system the other day that was based on ASP.NET MVC + CSLA + DDD (domain drive design). The first version of this system was based on ASP.NET MVC + CSLA. The second release was based on that plus added DDD. The reason is because..... well, I don't know what. As I looked at the diagrams from the two different ar...

CSLA.Net V3.6/NHibernate V2.10 ; how to overcome need for vitual properties

With CSLA.net, all domain classes need to inherit from Businessbase, which contains non-virtual properties. When using NHibernate, we need to implement virtual properties for lazy loading. Some options to use CSLA/NHibernate together seem to be: switch lazy loading off in NHibernate and implement lazy loading code in the domain cl...