DEV Community

Discussion on: Object-Relational Mapping & Code First Migration with Entity Framework Core

Collapse
 
samselfridge profile image
samselfridge • Edited

For anyone following on MacOS / OSX - you can use this docker guide to get setup:
database.guide/how-to-install-sql-...

Also I was having issues with my connection string. I suspect that 'trusted_connection' is a windows only thing, so I was able to get mine working using this connection string:

"Server=localhost,1433; Database=devDotNet; User Id=sa; Password=MuchStrengthSoPassVeryWord;"

Collapse
 
_patrickgod profile image
Patrick God

Thank you very much for sharing this! :) I think your post will help lots of maxOS users.