Tagged Questions
CSLA .NET is one of the most widely used open source development frameworks for Microsoft .NET. It helps developers build a scalable and reusable business domain object model for their application, that supports WPF, Silverlight, WP7, ASP.NET, ASP.NET MVC, service-oriented, and Windows Forms interfaces. Support for Windows 8/WinRT is planned.
37
votes
23answers
6k views
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 ...
8
votes
3answers
525 views
should I use Entity Framework instead of raw ADO.NET
I am new to CSLA and Entity Framework. I am creating a new CSLA / Silverlight application that will replace a 12 year old Win32 C++ system. The old system uses a custom DCOM business object library ...
8
votes
3answers
1k views
Are there any worthy CSLA alternatives available?
My company is interested in porting a large business application to .NET. We plan on developing a desktop version and a silverlight version. I mostly researched the CSLA framework (got rocky's book, ...
6
votes
2answers
1k views
Validation and in Service Layer or Business Objects?
Martin Fowler suggests using a service layer as a boundary between the domain model and and "Data Loaders". However, Rockford Lhotka suggests building validation into the business object itself and ...
5
votes
1answer
672 views
How to use Include with Lambda in EF?
According to this article you are suppose to be able to do includes using a lambda expression http://romiller.com/2010/07/14/ef-ctp4-tips-tricks-include-with-lambda/.
For example ...
var ...
5
votes
2answers
228 views
Error deleting a record using Linq2SQL
I've received an error report from a client recently and am having no luck resolving it. I'm hoping someone can give me some insight to what may be wrong.
The error seems simple enough:
...
5
votes
4answers
1k views
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 ...
5
votes
6answers
2k views
Have you attended the CSLA Master class?
As anyone ever attended the CSLA Master class from Rockford Lhotka?
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 ...
4
votes
3answers
375 views
What caused this InvalidOperationException using LINQ to SQL?
We experienced a number of errors on our live application a week or two ago that have so far escaped explanation. We saw these errors internally and they were also experienced by clients as it ...
4
votes
7answers
1k views
4
votes
3answers
518 views
CSLA.net - Inheritable Base classes
I was reading the book "Expert C# 2005 Business Objects".
The book describes various base classes to be inherited by various classes to solve real-world problems.
But the book does not provide ...
4
votes
3answers
3k views
4
votes
4answers
1k views
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 ...
4
votes
1answer
582 views
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 ...
4
votes
8answers
2k views
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 ...
3
votes
1answer
79 views
Best way to do TDD and CSLA
I would like to know what tools, patterns, etc people have used to be able to do TDD with CSLA .NET 3.8 and higher.
Which parts pose the most effort. Are there parts that are completely untested, ...
3
votes
3answers
320 views
Can anyone point me to CSLA app's running live on the Web?
Can anyone point me to CSLA.Net app's running live on the Web?
3
votes
7answers
5k views
3
votes
4answers
1k views
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>
...
2
votes
1answer
200 views
Mapping to CSLA objects using Automapper
I am trying to map a DTO object to a CSLA.NET (see: http://www.lhotka.net/cslanet/) object. For the sake of this question I am using the sample application that Lhotka provides with his framework. ...
2
votes
1answer
374 views
how do you add multiple versions of the same assembly to the gac
My one ASP.NET web site uses two different business object class libraries. There is a common framework DLL (CSLA.dll) between these two libraries. The problem is that one library wants to upgrade to ...
2
votes
2answers
192 views
Interface declaration for base class method to support IoC
So here is the code:
interface A<T>
{
T Save();
}
interface B : A<B>
{
}
class BusinessBase<T>
{
T Save();
}
class D<T, U> : BusinessBase<T>
where T : ...
2
votes
2answers
333 views
Recommendation for creating DAL objects
Can you recommend a DAL object creator that is simple yet useful. I want something that creates and updates object the way LINQ does. It should be in c# and much better if it splits object's ...
2
votes
2answers
107 views
How do I handle two assemblies with the same filename during a TFS 2010 RC build?
I am following the CSLA.NET for Silverlight pattern of using the same filename for the business objects assemblies. For example:
CSLA.dll // .NET assembly
MyProject.Entities.dll // ...
2
votes
2answers
327 views
.NET Domain Driven Design and CSLA.NET
In Eric Evans' Domain Driven Design approach, would it be a good idea to use Rocky Lhotka's CSLA.NET for designing Business Entities for Domain Layer?
2
votes
1answer
456 views
Csla.Luna, what's this?
I have this wpf form; the call to InitializeComponent() brings up this message:
Binding Failure was detected.
The assembly with display name
'Csla.Luna' failed to load in the
'Load' ...
2
votes
1answer
380 views
NHibernate.NonUniqueObjectException within a transaction (using CSLA.Net)
I am pretty new to both NHibernate and CSLA.NET, and I'm running into an issue where I'm essentially needing to save the same row in the database twice, within the same transaction (and therefore, ...
2
votes
5answers
2k views
Have you ever used CSLA? [closed]
Possible Duplicate:
Does anyone have any real-world experience of 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 ...
1
vote
0answers
67 views
read csv file with filehelpers error
I have an application developed in Visual Studio 2010 incorporating the CSLA.Net framework and FileHelpers Library.
I am using the code below to read a csv file with the file helpers library. I have ...
1
vote
1answer
40 views
From Silverlight to MVC CslaModelBinding child collections
Background:
A while ago we developed a business application for silverlight using the csla framework. Now we wish to create an MVC alternative for people who are unable to use Silverlight for one ...
1
vote
3answers
108 views
How to inherit from a CSLA object in F#?
I would like to get the benefits of CSLA from F#, but I am having trouble with inheritance. Here is the ProjectTracker ResourceInfo class. Can someone please show how to do it in F#?
using Csla;
...
1
vote
3answers
180 views
Need domain modeling advice - hopefully common scenario
and thanks in advance for your time.
We are using CSLA 3.5.1, although, ultimately, this problem may not have much to do with CSLA.
My company has gone a long way down the road of a common modeling ...
1
vote
1answer
886 views
Return Value Using SqlCommand
I'm trying to get the result set and return value of a stored proc on SQL 2008 server. When I run the proc in sql management studio, I get the result set and the return value.
However, when I try to ...
1
vote
1answer
82 views
Why is PropertyInfoManager not contained within BusinessBase like FieldManager is?
I know that FieldManager is exposed as a protected property within BusinessBase. Why isn't PropertyInfoManager setup the same way? From what I can gather, PropertyInfoManger maintains a dictionary ...
1
vote
1answer
417 views
WCF Data Services How do I add Business Logic or use existing CSLA objects
First of all, this is my first Stack Overflow question so apologies in advance if I get this wrong!
I'm working on creating a service endpoint for a CRM database used internally. Several applications ...
1
vote
1answer
701 views
New features in CSLA 4.0 over CSLA 3.8
What are new features in CSLA 4.0 over CSLA 3.8 and which one better ?
1
vote
1answer
359 views
CSLA with WCF nettcpbinding
I am using CSLA.NET. It works realy nice with the wsHttpBinding. Now, I have my own Windows-Service and search the solution, that I can use this Windows-Service as the CSLA-Server and using ...
1
vote
2answers
166 views
How to create a platform ontop of CSLA? <— if in case it make sense
Here is the scenario, I'm developing an application using csla 3.8 / c#.net, the application will have different modules. its like an ERP, it will have accounting, daily time record, recruitment etc ...
1
vote
2answers
647 views
How to implement a single business logic layer based on CSLA and consume it from WPF, Winform and Silverlight?
Is it possible to have a single implementation of business logic layer (based on CSLA) and consume it from different presentation technoligies like winform, silverlight etc. There exists CSLA for ...
1
vote
4answers
1k views
Issues with storing the custom Principal in Session for ASP.NET MVC
I am running into an issue with ASP.NET MVC where it is forcing the user to log back in after about 20 mins of inactivity.
I am using Forms Authentication and have increased the time-out in the ...
1
vote
3answers
254 views
Subsonic and CSLA.NET
Can SubSonic be used with CSLA.NET? Has anyone tried this. From my understanding
SubSonic is a DAL
CSLA.NET is a BAL (BLL)
I can't seem to find any information on this.
1
vote
5answers
3k views
Implementing C# Business Objects (CSLA)
We are about to commit to implementing Rocky Lhotka's CSLA as an application development Framework for our Visual Studio 2008 solutions. I would like to test the water on SO and am particularly ...
1
vote
2answers
280 views
Java “equivalent” to CSLA
I've read several chapters of the CSLA book and I like it, but being lately geared more towards Java, I'm looking for a Java-based equivalent. Does anybody know anything that comes close to CSLA in ...
1
vote
1answer
1k views
WCF / Csla Hell
I'm trying to build a proof of concept Csla 3.7/Silverlight 3 app and have been working my way through Rocky's tutorials. It's a really simple one form/one business object data editing app and ...
1
vote
2answers
295 views
Adopting CSLA.NET on started project
Im considering use CSLA.NET 3.8 for example for Security and Identity Management on a started Windows Forms Fx 3.5 Project, this will be considered as a good practice?
Im looking for :
- Namespace ...
1
vote
2answers
233 views
The Business Case for using CSLA
I've been using CSLA in anger for some time on a long standing project. However I would like to use it on a new project and need to develop a sound business case in order to get buy-in from senior ...
1
vote
2answers
988 views
C# CSLA business object dilemma: read-only vs read/write
I'm part of a team tasked to revamping our old VB6 UI/COBOL database application to modern times. Before I was hired, the decision was made (largely on sales, I'm sure) to redo the UI before the ...
1
vote
1answer
456 views
How to create a lazy-loaded and cached collection in Silverlight/CSLA
I'm creating a Silverlight front end for an existing desktop app written using CSLA. One thing that I'm having trouble with is converting classes like the following:
public class SomeCollection : ...
1
vote
4answers
4k views
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 ...
1
vote
2answers
560 views
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 ...