I have a DB containing many tables, and every table has different properties, and I want to achive the following:
Create and index on all of the proper
David, You don't have tables in RavenDB, but that aside, you can just define an index over the entire data set, like this:
from doc in docs select new { doc.Name }
Which will define an index over all types, allowing you to query over all the documents' names.