Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the difference between these two packages?

enter image description here

and

enter image description here

Now before everyone jumps in and says: One is for the ASP.NET MVC framework website(s) and the other is not, I'm under the impression that the WebMvc is a wrapper for the MVC framework.

As such, we don't need to write as much code.

So .. can someone please explain the difference with code.

eg. With the Core dll, u would have to write these 10 lines. With the WebMvc dll you can just use this Action Method Attribute or whatever...

Also, bonus points to any tutorials that explain how to use it, or some sample website code in codeplex, github, bitbucket, where-ever...

share|improve this question

1 Answer

up vote 1 down vote accepted

The FacebookWebMvc depends on the FacebookWeb NuGet so when you install it it also installs the base package:

enter image description here

It contains helper functions adapted for ASP.NET MVC but they all use the core library.

share|improve this answer
Yeah .. but can u please give some code samples how we use that? – Pure.Krome Sep 16 '11 at 7:41
@Pure.Krome, what exactly are you interested in? The documentation contains many examples and getting started tutorials: facebooksdk.codeplex.com/documentation – Darin Dimitrov Sep 16 '11 at 7:44
hmm. i was there today/last night and they don't have examples there of MVC dll .. which was why i asked. just the core dll. – Pure.Krome Sep 16 '11 at 7:54
Here is an exact code what the documentation says. - "Make sure to download the source code and check "Samples" folder for working samples." and there are MVC samples too. and FacebookWebMvc is dependent on FacebookWeb which is also dependent also on Facebook – prabir Sep 16 '11 at 13:26

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.