-1

I am new to .net core. I want to access RDS using .net core. It would be great if I can get steps to be followed for the same or some code sample. Thanks in advance.

user2823297
  • 37
  • 1
  • 6

1 Answers1

1

How to access your DB running in RDS will vary depending on what engine you have selected. You'll want to use whatever driver is appropriate for the engine you've selected. For example, you'll need to choose a mySql driver if you picked mySql or Aurora; a T-SQL driver if you've gone with MS SQL Server; and so on. RDS is simply hosting your DB, and doesn't prescribe to you a particular client library.

Ken Mason
  • 682
  • 2
  • 6
  • 16