I use SQL Server 2008 and Entity framework 4.1 database first approach .
Is there any way I could create null-able Computed column ?
I can't create like this :
Alter Table Employee Add FullName nullable as LastName + ' ' +FirstName
If the answer is NO , then Is there any way I could make the appropriate Scalar Property Nullable
in EDMX File of EF Which map to Computed column ?