sunny74:1) What is the standard forum schema? How to create it?
I mean by standard , is that its the same forums schema that is used in the most famous forums ,
like YAF,DNN forums, Rainbow fourms,Community server forums.....
sunny74:How can I store the forum matter in XML files instead of database?
I think using XML as a data store for the Forums will be a bad idea ..
because the forums is expected to grow and get large , and since the xml is not good for Large and complex data structure ...
also using the XML needs more effort because you should handle the Concurrent trnsactions.... XML can be used for a Blog,simples news module,settings files, Advertisments, Site mapss
but Not for forums....
However, if you still want to use XML as a data store for the forums module , you need to inherits the
ForumsProvider class which can be found inside "MB.TheBeerHouse.DAL" namespace, and you should provide a custom implementation for its Abstract methods like
Public MustOverride Function GetForums() As List(Of ForumDetails)
Public MustOverride Function GetForumByID(ByVal forumID As Integer) As ForumDetails
Public MustOverride Function DeleteForum(ByVal forumID As Integer) As Boolean
.......
Best Regards,
Anas Ghanem - انس الغانم |
My Blog