vote up 3 vote down star
3

Such as:

  • Sealed Methods you might have liked to extend
  • Exceptions thrown are more vague than is helpful
  • Elimination of Connected Content which was a major feature in MCMS 2002
  • HTML is stripped from fields when stored and returned. No easy option to work around this problem
  • Creating an SPWeb takes an eternity.
  • Nonexistant migration path from MCMC 2002
flag
Touche! How do you really feel about it? – Chris Ballance Feb 8 at 21:30
I agree with Rex. ;) The API is monstrous. Has anyone else seen memory leaks starting workflows in code? – Ray Booysen Feb 8 at 21:38
Hopefully the amount of sales ($) generated by MOSS will enable them to revisit the internals of the OM. I fear though that, that exact reason will prevent them as they'll want to maintain backwards compatibility. – Rich McGuire Feb 8 at 21:45
This should be community wiki. Good question by the way. – Alex Angas Feb 24 at 13:48
Oh and you might want to make your answers actual answers... – Alex Angas Feb 24 at 13:49

6 Answers

vote up 6 vote down check

I wish that the Sharepoint object model was purely managed code. Although having .NET wrappers is convenient, having to worry about disposing the many objects that implement IDisposable is a pain. It's so easy to run into memory issues when dispose does not get called in a WSS app. And I thought the reason for moving to .NET was to free developers from having to deal with memory management...

link|flag
+1 you should see some of the patterns we've come up with for ensuring we properly dispose every SPWeb in a branching recursion – Rex M Feb 8 at 17:54
I agree here too. SPWeb is a nightware to keep under control. – Ray Booysen Feb 8 at 21:38
+1 SPWeb regularly hits my mom – Chris Ballance Feb 9 at 0:54
vote up 1 vote down

How about refactoring Properties that result in additional database calls to methods instead, for example the Items property on SPList.

link|flag
vote up 0 vote down

Has anyone seen this method: http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsecurity.runwithelevatedprivileges.aspx This method shows the unbelievable nonsense that Sharepoint exposes to developers.

link|flag
Yes, this is a dangerous method in the wrong hands. – Chris Ballance Feb 9 at 4:19
It would be great to see more details as to how you've seen it misused :) – Alex Angas Feb 24 at 13:49
vote up 1 vote down

Any of the SPList API could use a complete rewrite. Trying to deal with libraries with nested folders is a complete nightmare with the list being completely flattened with no obvious hierarchical structure.

Another wonderful addition would be adding interfaces to SPWeb, SPList and other Sharepoint classes to aid testing.

link|flag
vote up 0 vote down

My personal favourite is the SPField.GetFieldValue Method. I have no idea why they designed it the way they did, but to me it does hardly make sense. To get a object out of a ListItem you have to do somethine like:

SPField field = ((SPList)list).Fields.GetField("FieldName"); 
object fieldValue = field.GetFieldValue(((SPListItem)item)[field.Title].ToString());

Getting an object out of a ListItem is IMO a basic operation, so this should not be that complicated.

link|flag
vote up 1 vote down

Inconsistencies when passing field names to methods or arrays. For example:

To put the icing on the cake, there is usually no documentation about whether a method takes internal and/or display name.

link|flag
+1 for the "no documentation" remark. Drives me crazy. – Robert S. May 11 at 14:59

Your Answer

Get an OpenID
or

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