日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > C# >内容正文

C#

【C#】ADO .Net Entities Framework使用查询语句时遇到的错误

發布時間:2025/3/15 C# 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【C#】ADO .Net Entities Framework使用查询语句时遇到的错误 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

XAML代碼:

<Window x:Class="WpfApplication72.MainWindow"

? ? ? ? xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

? ? ? ? xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

? ? ? ? xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

? ? ? ? xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

? ? ? ? xmlns:local="clr-namespace:WpfApplication72"

? ? ? ? mc:Ignorable="d"

? ? ? ? Title="MainWindow" Height="350" Width="525">

? ? <Grid>

? ? ? ? <DataGrid x:Name="listBox" ItemsSource="{Binding}" />


? ? </Grid>

</Window>

隱藏代碼:

using System;

using System.Collections.Generic;

using System.Collections.ObjectModel;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows;

using System.Windows.Controls;

using System.Windows.Data;

using System.Windows.Documents;

using System.Windows.Input;

using System.Windows.Media;

using System.Windows.Media.Imaging;

using System.Windows.Navigation;

using System.Windows.Shapes;


namespace WpfApplication72

{

? ? /// <summary>

? ? /// Interaction logic for MainWindow.xaml

? ? /// </summary>

? ? public partial class MainWindow : Window

? ? {

? ? ? ? private Formula1v2Entities data = new Formula1v2Entities();

? ? ? ? public MainWindow()

? ? ? ? {

? ? ? ? ? ? InitializeComponent();

? ? ? ? ? ??


? ? ? ? ? ? this.DataContext = collection;

? ? ? ? }


? ? ? ? public IEnumerable<object>collection

? ? ? ? {

? ? ? ? ? ? get

? ? ? ? ? ? {

? ? ? ? ? ? ? ? return (from r in data.Racers

? ? ? ? ? ? ? ? ? ? ? ?select new

? ? ? ? ? ? ? ? ? ? ? ?{

? ? ? ? ? ? ? ? ? ? ? ? ?Id=r.Id,

? ? ? ? ? ? ? ? ? ? ? ? ?FirstName=r.FirstName,

? ? ? ? ? ? ? ? ? ? ? ? ?LastName=r.LastName,

? ? ? ? ? ? ? ? ? ? ? ? ?Nationality=r.Nationality

? ? ? ? ? ? ? ? ? ? ? ?}).ToList();


? ? ? ? ? ? }

? ? ? ? }

? ? }

}

在隱藏代碼中如果沒有ToList()方法的話,運行程序會報如下的錯誤:

Additional information: Data binding directly to a store query (DbSet, DbQuery, DbSqlQuery, DbRawSqlQuery) is not supported. Instead populate a DbSet with data, for example by calling Load on the DbSet, and then bind to local data. For WPF bind to DbSet.Local. For WinForms bind to DbSet.Local.ToBindingList(). For ASP.NET WebForms you can bind to the result of calling ToList() on the query or use Model Binding,

for more information see http://go.microsoft.com/fwlink/?LinkId=389592.

參考鏈接:

https://www.devexpress.com/Support/Center/Question/Details/Q580427




? ? ? 本文轉自daniel8294 51CTO博客,原文鏈接:http://blog.51cto.com/acadia627/1737945,如需轉載請自行聯系原作者







總結

以上是生活随笔為你收集整理的【C#】ADO .Net Entities Framework使用查询语句时遇到的错误的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。