short answer: Quite probably, as SQL Azure is very similar to SQL Server
longer answer: Object Relational Mappers (ORMs) that work with SQL Server are likely but not guaranteed to work with SQL Azure. The differences between the RDBMS versions are small – but may cause problems, for example in tools used to create the mapping between objects and tables or in generated SQL from the ORM which expects “certain things” :-)
More specifically:
The list above is by no means comprehensive – please leave a comment with details of other ORMs that work (or do not work) with SQL Azure.
Related Links: