No, it will not be created for you, but with little effort you can integrate them. You can simply generate from your tables and then return the object inside the repository layer:
public Customer GetById(int id) { return_context.Database.SqlQuery("Proc_GetCustomer @customerID", new SqlParameter("@customerID", id)); }
source share