Is it possible to define dynamic schema with OrmLite in runtime. For instance, when reading object through OrmLite is it possible to define which schema to read it from.
This would be best shown through an example. Let's say I have 3 User tables inside MSSQL 2008 R2 database:
Schema1.user Schema2.User Schema3.User
I have an object User with some properties defined. I select data like this "db.Select();". The problem is I have not defined from which schema to read User data from. I want to be able to do this at runtime, but I can't seem to find a propert way to do it.
Using C#, .NET 4.5 fw, MSSQL 2008 R2 Database
Thank you!