3

Is it possible to create, not just a table with EF CodeFirst, but also have the table be part of a schema?

1 Answer 1

4

You can specify the schema with data annotations as follows

[Table("MyTable", "MySchema")]
public class MyEntity
{

}

Or with fluent API

modelMoulder.Entity<MyEntity>().ToTable("MyTable", "MySchema");
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.