What’s the difference between List and Content Type in SharePoint?
For me, it is almost the same.
I see Content type as a special kind of List ?
Is it OK to see it like that ?
What else are the differences?
BTW, I am a beginner to SharePoint.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, that view is false. A very good analogy to understand the differences, providing you know C# or any other modern language:
Lists physically exist and contain physical data in a database, so they are like a table in SQL (please note the actual data structures at the SQL level are completely different, but you definitely don’t have to care about this). On the other hand, content types are just definitions, sets of fields, that are applied to lists.
The result is that lists can contain items of various content types. In fact, lists contain heterogenous data. A list item is composed of a union of all fields that are referred to from content types applied to that particular list—hence the class/interface analogy.