New Post: Getting each Column Descriptions
Hello, is it possible to read the Column Description values as well as the Extended Properties for each table for SQL Server 2012. Thanks .. this is the best project ever.. amazing code practices too
View ArticleNew Post: Getting each Column Descriptions
my question is how to write the SQL statement, because I only get null values http://grab.by/m48M for the description and I added some descriptions on a few columns)http://grab.by/m46C Regards
View ArticleNew Post: Getting each Column Descriptions
It's already in the latest code (SqlServerSchemaReader.ColumnDescription) Minus the table/schema selection, the SQL I use is below (minus the table and schema restrictions):SELECT SchemaOwner = s.name,...
View ArticleNew Post: Getting each Column Descriptions
Martin. you Rob https://twitter.com/eisenbergeffect and Ward Bell https://twitter.com/wardbell/ are the best developers i know of Thanks
View ArticleNew Post: changing tables once on the DatabaseSchema
sometimes the pluralization does not fir the one for Entity Framework. is there a way to alter the name of the database I have tried this 1-http://grab.by/mrle 2-also crazy things like this...
View ArticleNew Post: changing tables once on the DatabaseSchema
It is possible to just set the databasetable.NetName property. This is sufficient for simple changes before code generation.var docStatusTable = schema.FindTableByName("DocumentStatus");...
View ArticleNew Post: Read Schema for a "table per type" database
Hello Martin is it possible to read the schema for a "table per type" database in SQL serverhttp://msdn.microsoft.com/en-us/data/jj591617.aspx#2.5
View ArticleNew Post: Read Schema for a "table per type" database
7.1 here http://msdn.microsoft.com/en-us/data/hh949853.aspx The queries which are generated will be more complex than those that are generated with the other inheritance strategies, which may result on...
View ArticleNew Post: Read Schema for a "table per type" database
The schema can be read fine - the problem is for the code generation part which has to reverse engineer the code first model. We can identify the "shared primary key" which is a key part of this...
View ArticleNew Post: Read Schema for a "table per type" database
thanks Martin. as you probably know,Ward Bell is the guy for data, he has this application http://www.breezejs.com/samples/doccode and there is Entity Framework Table-per-Type inheritance...
View ArticleNew Post: Read Schema for a "table per type" database
I had another look at this, and I have an initial implementation.Changeset is 27209 If two tables have a "shared primary key", it's a one to one. If there are more than two tables joined to the same...
View ArticleNew Post: Awesome and a few questions
Hi, I just came across your library and I love what I see so far! How active are you on this library? I mean, if I were to use it as an important piece of some work I have in mind, what are the chances...
View ArticleNew Post: Awesome and a few questions
The original version of this dates to 2005, and it's been on Codeplex since 2010. Three releases so far this year, checkins already for the next release, so, yes, the project is active. I've used it in...
View ArticleNew Post: Oracle RAW(16)
Hi Matrin, Here I am again :) I am writing a cross-db query tool and your library is key in some of the things I need to do. I have built my own libs in the past but you cover more adapters, so I said...
View ArticleNew Post: Oracle RAW(16)
Try the latest checkin - 27366. I read both DATA_LENGTH and CHAR_LENGTH. If there is no CHAR_LENGTH (i.e. not a char or varchar type) it uses DATA_LENGTH and puts it into the DataColumn.Length. When we...
View ArticleNew Post: Oracle RAW(16)
Hi, I didn't get to trying your new build yet (definitely today or tomorrow) but thanks for the quick fix! Any chance you could release a new NuGet release as well or you want me to test your fix first...
View ArticleNew Post: Oracle RAW(16)
I will do the 1.2.9 release later this week, so you'll have it in a few days. But please test just in case there's any problems - thanks!
View Article