Arne Claassen
Arne Claassen

Reputation: 14414

Any .NET ecommerce packages using MVC and Linq?

I'm trying hard not to go off and roll my own shopping cart, but after perusing the available .NET ecom packages, it's all ASP.NET webforms. In addition, if i see another handrolled DB layer or some manual invocation of Activator.CreateInstance() for extensibility, i'm going to break out in hives.

So what I'm looking for is a shopping cart written in C# using ASP.NET MVC, FubuMVC or Monorail using some Linq capable ORM, preferably NHibernate. I would prefer it to be open source, but if the code base is well done and source license is available, I'm not opposed to a commercial solution.

I know about Rob Conery's webcast series on this topic, but if i'm not rolling my own, i'd like something a little closer to prime time.

Is there such a beast, or is rolling my own the best option?

Upvotes: 17

Views: 9491

Answers (5)

Woland
Woland

Reputation: 2919

Me and my team created a product called VirtoCommerce which is a .NET product implemented using MVC4/Razor, utilizes IoC (Unity), EF5, Repository model and many more common sense development practices. It also designed to work and scale on Windows Azure, meaning it uses queues, blobs to distribute work as needed. We also recently made it open source which is available on codeplex. We run couple of sites on them with more than 2.5 million page views per day and thousands of orders per day.

Upvotes: 1

Barry Franklin
Barry Franklin

Reputation: 1820

If you're looking for an open source ecommerce app that uses MVC then check out http://www.nopcommerce.com - they've just released version 2.0 which is done in MVC 3.

Upvotes: 9

Anton Semenov
Anton Semenov

Reputation: 6347

Did you look on microsoft web platform web app library. There is ecommerce section there http://www.microsoft.com/web/gallery/categories.aspx?category=eCommerce
All aps is free

Upvotes: 0

Conaire Creaney
Conaire Creaney

Reputation: 138

iv been developing an ecommerce package using mvc and linq. Its roughly based on magento's implementation and is about 50% complete. All the basic stuff works like adding categories and products, pricing rules, user sign ups, product imports and exports. There are currently two stores using it. Im thinking about open sourcing it and would like to hear from other developers who would be interested in giving me a hand to finish it off.

Upvotes: 2

Ken Egozi
Ken Egozi

Reputation: 1835

Did you happen to look at http://code.google.com/p/sutekishop/?

This is afaik an open=source e-commerce suite, running ASP.NET MVC and (maybe) Linq2SQL. It has been deployed at least on one place, and the dude running is (Mike Hadlow at http://mikehadlow.blogspot.com/) is supplying with commercial support (I think).

Upvotes: 5

Related Questions