Which framework to use for c#?

  • Thread starter Thread starter Sergio
  • Start date Start date
S

Sergio

Hi all,

Which framework or set of technologies would you use to build an enterprise
bookkeeping application?
Application must use business objects, UI will be developed as a client
application using Windows Forms and WPF, and later a web UI will be added.

What to use for business object support?
I've found http://www.lhotka.net/cslanet/?
What about http://nettiers.com/ ?

Tnx!
 
Sergio said:
Hi all,

Which framework or set of technologies would you use to build an
enterprise bookkeeping application?
Application must use business objects, UI will be developed as a client
application using Windows Forms and WPF, and later a web UI will be added.

What to use for business object support?
I've found http://www.lhotka.net/cslanet/?
What about http://nettiers.com/ ?

Tnx!
None - by the time you finish, you will have spent as much as if you had
simply purchased it. Now to the technical answer - framework 3.0 or later.
 
Sergio said:
Which framework or set of technologies would you use to build an
enterprise bookkeeping application?
Application must use business objects, UI will be developed as a client
application using Windows Forms and WPF, and later a web UI will be added.

What to use for business object support?

..NET comes with most you will need.

I would add an O/R mapper like NHibernate or LLBLGen for persistance,
possible a DI framework like Spring.NET, log4net for logging, NUnit
for unit tests and maybe some more configuration management tools
(but that is outside my area of expertise).

Arme
 
Arne Vajhøj said:
.NET comes with most you will need.

I would add an O/R mapper like NHibernate or LLBLGen for persistance,
possible a DI framework like Spring.NET, log4net for logging, NUnit
for unit tests and maybe some more configuration management tools
(but that is outside my area of expertise).

Arme

Tnx for your answer, goin' to examine .Net in more detail. ;)
 
Hi all,

Which framework or set of technologies would you use to build an enterprise
bookkeeping application?
Application must use business objects, UI will be developed as a client
application using Windows Forms and WPF, and later a web UI will be added.

What to use for business object support?
I've foundhttp://www.lhotka.net/cslanet/?
What abouthttp://nettiers.com/?

Tnx!

Have a look at Enterprise Library (http://www.codeplex.com/entlib)
from Microsoft. It is a mature library covering basics like exception
handling, logging, validation or caching in a very complete, flexible
and modular way.
If your focus is on business objects have a look at Persistor.NET
(www.persistor.net) for persistence. It provides a very easy way to
store your objects.

Hans-Peter

Persistor.NET Team
 
Back
Top