Well I manage to migrate your database from sql ce to sql express . The simplest way of doing it is to use the migration option provided by Microsoft Webmatrix, and then simply provide your connection details . Once the migration is done , remember to edit the webconfig file as :
starter kit for Razor
Hi ,
I have checked all the started kits for Umbraco but they all are written in XSLT, Is there any starter kit available which is built on razor .
Regards
There's this project with loads and loads of Razor examples (votes appreciated! ;-)): http://our.umbraco.org/projects/developer-tools/cultiv-razor-examples
Looks great , Is it ok to modify it according to my requirements
Yup, it's MIT licensed, so basically you can do with it whatever you want.
Just need to know , How can I connect my db to your cultiv-razor-examples :)
I guess you have created db in sql ce , Is there any way i can migrate that sql 2008 express r2
You cannot attach your own database, it doesn't have the document types, templates and content setup like the examples.
To migrate, try this: http://stackoverflow.com/questions/4231788/is-it-possible-to-convert-my-sqlce-3-5-database-to-sql-express-2008-r2-format
Well I manage to migrate your database from sql ce to sql express . The simplest way of doing it is to use the migration option provided by Microsoft Webmatrix, and then simply provide your connection details . Once the migration is done , remember to edit the webconfig file as :
In <appsettings> add:
<add key="umbracoDbDSN" value="server=.\server;database=Umbraco;user id=userid;password=password" />
Cheers
is working on a reply...