@Cenk T ,Welcome to Microsoft Q&A, we also could use ExecuteSqlRaw method to create the table.
Here is a code example you could refer to.
TeacherContext context=new TeacherContext();
string sqltext = "create table Employee (empno int,empname varchar(50),salary money);";
context.Database.ExecuteSqlRaw(sqltext);
Result:

Best Regards,
Jack
If the answer is the right solution, please click "Accept Answer" and upvote it.If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.