varigence / BimlPit

Public Issue Tracker for all Varigence Biml products
6 stars 0 forks source link

IsComputed is not detected by GetDatabaseSchema #58

Open bweissman opened 6 years ago

bweissman commented 6 years ago

CREATE TABLE dbo.Products
(
ProductID int IDENTITY (1,1) NOT NULL
, QtyAvailable smallint
, UnitPrice money
, InventoryValue AS QtyAvailable * UnitPrice
);

this code should show InventoryValue with IsComputed=true, but it doesnt with GetDatabaseSchema?

jalley3 commented 6 years ago

What connector are you using?