Hi All,
I have a problem with adding a MS-SQL view to my Entity Data Model. The view is so simple and I added the table related with this view. Below T-SQL script about view.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[HFL_VWPrcListSrchRslt]
AS
SELECT sfiyat_fiyati,
sfiyat_stokkod
FROM STOK_SATIS_FIYAT_LISTELERI
WHERE sfiyat_listesirano = 1
AND sfiyat_deposirano = 0
AND sfiyat_odemeplan <= 0
Why can't I see the View in my .edmx designer?