Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm just starting with .NET data storage and I'm confused by so many different technologies... This is a learning project. You don't need to go on reading, I need to make an architecture proposal first... Thanks so far

My scenario:

e.g. a local app that can store and tag images. The user can choose if he want to

  • store his data local only
  • web based only
  • or a mix of both

Conditions:

  • No additional local db server installation
  • The user can upload selected parts of his local data to make it public available for other users
  • Other users can add this data to their local repository
  • Later there should be the capability that so. acknowledges the upload before it is pubic available => WWF

As you can see many operations and data (transfer) objects are redundant no matter if the operation is local or web based. This is one of my main goals to make use out of this fact. I'm looking for programming comfort :)

I'm interested in:

  • LINQ
  • WCF
  • WWF

Cloud could be an option but I would prefer a wcf service to access data (at least I think that I prefer this :)

Technologies I saw: XLinq, Entity framework, hibernate, Linq to ..., WCF Data services, SQLite with Linq, web services, Entity SQL... what a hell

I read much about this topic but it is hard to estimate the consequense of architectural decisions. Also other posts didn't help me on planning the project.

You make my day if you could point me in the right direction. THANKS!!!

share|improve this question

2 Answers

up vote 0 down vote accepted

You may want to consider SQL Server 2008 on the server and SQL Server Compact on the local machine. Each is optimised for that kind of environment, and the data storage and management features that they offer are quite similar. Abstracting out access mechanism from your code, as jasper suggests, should be extremely easy with this pair of technologies.

SQL Server Compact is an embedded database engine that runs in-process with your app, installs together with it as a "single DLL", and does not need a separate database server installation.

In any case, I totally agree with jasper that you should focus on the architecture and design on the system, and think of technology as something secondary.

share|improve this answer
There is no single reason to have SQL Server for what had been asked in question – Геннадий-Ванин Oct 30 '10 at 13:50
Thanks CesarGon. I started now with SQL Server. Because I use LINQ, I will see how much I will be coupled to MS DB products. Because it is only for learning it is not that important but in future it will be... – TottiW Oct 31 '10 at 12:04
I want to go the SOA way and I was looking for technologies that fit for my app. What helped me a lot was that I can run SQL Server compact in process - wasn't aware about that. Thanks again – TottiW Oct 31 '10 at 12:38
I totally agree to focus on the architecture and that works in an ideal world. In real world the technology has in many cases a big impact on your architecture and the other way round- things like REST, SOA, AJAX, Web Services... come to my mind. Some match good to others, some don't. I see now that I have not enough knowledge to ask more precise :) I will make a architecture proposal and a sample project. Then it is easier to discuss what is good or bad. Maybe this sample project helps so else too. – TottiW Oct 31 '10 at 12:40
@TottiW: Happy that you find it useful. – CesarGon Nov 1 '10 at 11:28

your main focus imo, should be to abstract your storage solution from your storage mechanism.

Decide what methods you'll need SaveData,LoadData,GetSavedDataList,DeleteItem ... then create an interface IStorage. This way, you can write a number of different solutions, local+binary/remote+WCF, but keep the core of your application logic decoupled from the storage solution. your core logic shouldnt care where it saves/loads the information from.

Really, what storage solution you use, is up to you. Each have their own pros and cons, and its impossible for anyone to give you a 100% correct answer on which will be the best for you. In the end of the day, you're going to end up with 3 main pieces of work. Storing the data locally, transfering the data to a remote server, storing the data in the remote location.

Storing it locally could be as simple as keeping an XML file for metadata, and binary files for the images. You say you dont want to install a local DB, is this a DB engine, or any DB solution, would it be possible to use something like MsAccess/SQL CE etc, as it would make the overall design a little better?

For your remote storage, you could write a webservice that transfers an object, with the image data, and tags etc, your local system wouldnt have to know any different if you design your code well with good abstraction/decoupling, and have the webservice(on the server side), persist the data to a database using LINQ.

There are many ways to skin this cat, no doubt you'll get plenty of other advice from the rest of the SO community.

share|improve this answer
Thanks Jasper for your detailed answer! – TottiW Oct 29 '10 at 21:36
I totally agree concerning the level of abstraction. I'm familiar with design patterns. – TottiW Oct 29 '10 at 21:37
Sorry for not being precise enough: I'm not sure which technology I should learn. I'm not looking for a 100% correct answer - more a common furture proof practice in MS world. – TottiW Oct 29 '10 at 21:43
DB: I want to be able to give people an installer => I cannot have a local DB server – TottiW Oct 29 '10 at 21:46
ah ok. well, WCF is a good one, as you can use it in plenty of other things, and LINQ is another good one, as you can also use it on other things like collections, and its a very useful technology. – jasper Oct 29 '10 at 21:48
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.