Sharepoint 2010. Can i store database information
Can i save some serialized objects to sharepoint 2010 da开发者_如何转开发tabase?
I need to save List of SType objects:
class SType
{
string A{get;set;}
string B{get;set;}
}
And i dont want to create list for that.
Take a look at SPPersistedObject, it may fit your needs. (or may not, your question is not really specific)
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.administration.sppersistedobject.aspx
http://www.dotnetspark.com/kb/1554-sppersistedobject-class-sharepoint-tutorial.aspx
精彩评论