SOL-Invictus wrote:
Thats the problem, if i do as you said, klick on the file and then the properties, the first field is Misc - 'File Name', the other one is 'Full Path' - there are no other properties left...
That happens if you add the file to a Web Project! The new deployment model for web applications does not create a single dll for your web project anymore, but it compiles every page independently. On this model indeed there is no way to add the mapping file as an embeded resource. Instead, create all your business domain classes in a class library project as this will also help you to decouple your business tier from the UI tier. In a class library project you will be able to embed your mappings as resources.
HTH,
Radu