Well, the database is not mine. I'm at work and I'm supposed to update one of their old system that works with visual 6 and a normal database connection, and I'm optimizing it in .NET and adding the entity spaces objects for easier management of the tables. (I'm creating the program from the start again).
Those checkboxes are checked, and I think I have an advantage to my own ; there's a table called "facturas" and there's five owners for them. So there's five tables called factura, so I just want to access to the one owned by mayorpit. The advantage is, all the tables are exactly the same, i mean, they have the same fields, but the records are different obviously.
In myGeneration, it only shows one table called "factura" , and no owners. So i'm assuming that i could use that object to do a select to mayorpit.factura, since they use the same fields and all.
Is there any possible way to use a dynamic query from clause in this? like
col_fact.Query.From("mayorpit.factura");
I've tried it, but the paramater has to be a From object, and I've no idea what that is. =3
Any ideas?