Hi folks,
currently and as a proof of concept project, we're planning to build a small app, based on an already launched winforms app that's business layer is created by using CSLA 3.8.2. Main goal is to proof, that by developing a business layer with a framework like CSLA, it can be reused for both, smart-client and web-apps. All that with exploring new UI-technology like WPF and/or SL. Both collegues newbies to both technologies, but with experience in winforms and ASP.net.
1) is it wise to reuse the core of the layer already build, or should it be rebuild for SL/WPF-use?
2) do we need two different versions of CSLA for SL AND WPF? (I'm a little confused about 'CSLA for SL' vs. 'CSLA for Windows')
3) Any simple samples, esp. for SL as UI-technology?
Where and how to start...?
Thanks for pushing me/us into the right direction ;-)
Volker
The
will answer these questions with examples (though that content is aging, the price is discounted too :) ).
In general you should be able to reuse the existing business classes, though some types of code will be affected and you'll need to make adjustments.
In my experience, with well-designed object models to start with you'll have to tamper with only a small percentage of your existing code - mostly to block compilation of the DataPortal_XYZ and sync factory methods.
You will need to build your classes twice - once for .NET and once for SL Your .NET class library will reference Csla.dll for .NET and your SL class library will reference Csla.dll for SL. You can use Visual Studio's "file linking" capability to easily get your code files to build into both projects.
There are numerous samples in the CSLA samples download - SimpleApp, etc. Some are more complex, but some are about as simple as can be.
Copyright (c) Marimer LLC