In lucene.net can we search for a content without giving field name..and it will search in all fields that are indexed.
Use MultiFieldQueryParser to parse your queries, and provide it with a array of the field names you want searched.
The query doesn't need any special syntax. If your query is "cat hat" it will search all the specified fields for either of these terms. If your default operator is AND, it will require that each term be found in at least one field.