1
我使用DevExpress FileManager
。我想從數據庫中檢索數據到FileManager
,並且在數據庫中修改的所有操作都應該不使用EntityDataSource
。如何從SQL Server獲取數據到DevExpress FileManager而沒有EntityDataSource
我使用DevExpress FileManager
。我想從數據庫中檢索數據到FileManager
,並且在數據庫中修改的所有操作都應該不使用EntityDataSource
。如何從SQL Server獲取數據到DevExpress FileManager而沒有EntityDataSource
使用,而不是一個SQL數據源:
ASPxFilemanager:
<dx:ASPxFileManager ID="ASPxFileManager1" runat="server" DataSourceID="SqlDataSource1">
...
</dx:ASPxFileManager>
的SqlDataSource:
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString=""
SelectCommand=""
DeleteCommand=""
InsertCommand=""
UpdateCommand="">
</asp:SqlDataSource>
這裏有一個例子:ASPxFileManager
謝謝dcreight –