- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个日志数据库表,我想在 GridView
中显示它.我已经有一个 View 模型来轮询数据库并更新整个 ObservableCollection
如果表已更改。我对这些数据没有做任何其他事情,所以我认为没有必要再建立一个后置模型。
但是,现在我开始认为 viewmodel 对 View 和模型以外的任何东西都做任何工作是不合适的,我应该引入一个模型来观察数据库并为 viewmodel 提供任何更改。更新的ObservableCollection
然后在 View 模型中将新数据传递给 DataGrid
在 View 中。
最佳答案
你的ViewModel
是真的不应该做任何由“模型”负责的工作,在这种情况下是数据访问。
确实有很多方法可以实现这一点,但我会实现 repository pattern
围绕您的数据库相关逻辑。然后注入(inject) repository
依赖于您的 ViewModel
.
这两个家伙如何交流是另一个故事。您可以不时要求新数据,使用 Task.Run()
或类似的不会阻止用户界面的。
或者,如果您愿意,可以创建一个单独的“存储库轮询器”来通知 ViewModel
查询数据时,通过events
, pub/sub
还有什么。
所以最小的模拟repository
, 绕过平原 string
s,可能看起来像这样。
// repository
public interface IRepository<T>
{
Task<IEnumerable<T>> GetAll();
}
// repository impl
public class SimpleRepository : IRepository<string>
{
private readonly IList<string> _items = new List<string>();
public SimpleRepository()
{}
public Task<IEnumerable<string>> GetAll()
{
if (_items.Count > 10)
_items.Clear();
_items.Add(string.Format("string{0}", _items.Count));
Thread.Sleep(250); // queries take some time...
return Task.FromResult((IEnumerable<string>) _items);
}
}
GetAll()
从 repo 中返回所有“记录”的方法。
ViewModel
可以通过以下方式使用这个 repo。
// ViewModelBase just implements the INotifyPropertyChanged
public class MainViewViewModel : ViewModelBase
{
private ObservableCollection<string> _items;
public MainViewViewModel()
: this(new SimpleRepository())
{}
// pass in the repository dependency
public MainViewViewModel(IRepository<string> simpleRepository)
{
SimpleRepository = simpleRepository;
Task.Run(async () =>
{
// sophisticated polling logic here
while (true)
{
// update collection
var results = await SimpleRepository.GetAll();
Items = new ObservableCollection<string>(results);
Thread.Sleep(250);
}
});
}
public IRepository<string> SimpleRepository { get; set; }
public ObservableCollection<string> Items
{
get { return _items; }
set { _items = value; OnPropertyChanged();}
}
}
ObservableCollection<T>
时不时的,现在的逻辑是
ViewModel
.相关
XAML
如果您热衷于测试它,请在下面。
<Window x:Class="WpfApplication1.View.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:viewModel="clr-namespace:WpfApplication1.ViewModel"
Title="MainWindow"
Height="300"
Width="250">
<Window.DataContext>
<viewModel:MainViewViewModel />
</Window.DataContext>
<Grid Margin="10">
<ItemsControl ItemsSource="{Binding Items}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}"></TextBlock>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</Window>
ViewModel
中承担投票责任, 那么你的
RepositoryPoller
可以表现为
// generic poller
public class RepositoryPoller<T>
{
public event EventHandler<RepositoryEventArgs<T>> OnQueryComplete;
private readonly System.Timers.Timer _timer;
private TimeSpan _timeSpan;
// wire-up poll timer
public RepositoryPoller()
{
_timer = new System.Timers.Timer();
_timer.Elapsed += (sender, args) => Query();
}
// provide poll interval and repository, or set via properties
public RepositoryPoller(TimeSpan timeSpan, IRepository<T> repository)
:this()
{
TimeSpan = timeSpan;
Repository = repository;
}
public TimeSpan TimeSpan
{
get { return _timeSpan; }
set { _timeSpan = value; _timer.Interval = _timeSpan.TotalMilliseconds; }
}
public IRepository<T> Repository { get; set; }
public void Start()
{
if (TimeSpan.TotalMilliseconds > 0)
_timer.Start();
}
public void Stop()
{
_timer.Stop();
}
// query for data
private async void Query()
{
var results = (await Repository.GetAll()).ToArray();
RaiseQueryCompleted(results);
NotifyQueryCompleted(results);
}
// send results as event
private void RaiseQueryCompleted(IEnumerable<T> results)
{
var handler = OnQueryComplete;
if (handler != null)
handler(this, new RepositoryEventArgs<T>(results));
}
// send results as message
private void NotifyQueryCompleted(IEnumerable<T> results)
{
Messenger.Default.Send(new GenericMessage<IEnumerable<T>>(this, results));
}
}
// event args holding queried items
public class RepositoryEventArgs<T> : EventArgs
{
public RepositoryEventArgs(IEnumerable<T> result)
{
Results = result;
}
public IEnumerable<T> Results { get; set; }
}
event
通知监听器然后更松耦合
message
(使用
MVVMLight Libraries NuGet 依赖项)。
ViewModel
你会这样使用它
public MainViewViewModel()
: this(new RepositoryPoller<string>(
TimeSpan.FromSeconds(0.5d), new SimpleRepository()))
{}
public MainViewViewModel(RepositoryPoller<string> repositoryPoller)
{
RepositoryPoller = repositoryPoller;
// If you prefer pub/sub...
Messenger.Default.Register<GenericMessage<IEnumerable<string>>>(this, message =>
{
var results = message.Content;
Items = new ObservableCollection<string>(results);
});
// Or in case events feel more liek home
RepositoryPoller.OnQueryComplete += (sender, args) =>
{
var results = args.Results;
Items = new ObservableCollection<string>(results);
};
RepositoryPoller.Start();
}
public RepositoryPoller<string> RepositoryPoller { get; set; }
关于c# - 在 MVVM 场景中,我应该如何轮询数据库表以获取 'live' View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28575450/
我的问题是如何在 python 中创建一个简单的数据库。我的例子是: User = { 'Name' : {'Firstname', 'Lastname'}, 'Address' : {'Street
我需要创建一个与远程数据库链接的应用程序! mysql 是最好的解决方案吗? Sqlite 是唯一的本地解决方案吗? 我使用下面的方法,我想知道它是否是最好的方法! NSString *evento
给定两台 MySQL 服务器,一台本地,一台远程。两者都有一个包含表 bohica 的数据库 foobar。本地服务器定义了用户 'myadmin'@'%' 和 'myadmin'@'localhos
我有以下灵活的搜索查询 Select {vt:code},{vt:productcode},{vw:code},{vw:productcode} from {abcd AS vt JOIN wxyz
好吧,我的电脑开始运行有点缓慢,所以我重置了 Windows,保留了我的文件。因为我的大脑还没有打开,所以我忘记事先备份我的 MySQL 数据库。我仍然拥有所有原始文件,因此我实际上仍然拥有数据库,但
如何将我的 Access 数据库 (.accdb) 转换为 SQLite 数据库 (.sqlite)? 请,任何帮助将不胜感激。 最佳答案 1)如果要转换 db 的结构,则应使用任何 DB 建模工具:
系统检查发现了一些问题: 警告:?:(mysql.W002)未为数据库连接“默认”设置 MySQL 严格模式 提示:MySQL 的严格模式通过将警告升级为错误来修复 MySQL 中的许多数据完整性问题
系统检查发现了一些问题: 警告:?:(mysql.W002)未为数据库连接“默认”设置 MySQL 严格模式 提示:MySQL 的严格模式通过将警告升级为错误来修复 MySQL 中的许多数据完整性问题
我想在相同的 phonegap 应用程序中使用 android 数据库。 更多说明: 我创建了 phonegap 应用程序,但 phonegap 应用程序不支持服务,所以我们已经在 java 中为 a
Time Tracker function clock() { var mytime = new Date(); var seconds
我需要在现有项目上实现一些事件的显示。我无法更改数据库结构。 在我的 Controller 中,我(从 ajax 请求)传递了一个时间戳,并且我需要显示之前的 8 个事件。因此,如果时间戳是(转换后)
我有一个可以收集和显示各种测量值的产品(不会详细介绍)。正如人们所期望的那样,显示部分是一个数据库+建立在其之上的网站(使用 Symfony)。 但是,我们可能还会创建一个 API 来向第三方公开数据
我们将 SQL Server 从 Azure VM 迁移到 Azure SQL 数据库。 Azure VM 为 DS2_V2、2 核、7GB RAM、最大 6400 IOPS Azure SQL 数据
我正在开发一个使用 MongoDB 数据库的程序,但我想问在通过 Java 执行 SQL 时是否可以使用内部数据库进行测试,例如 H2? 最佳答案 你可以尝试使用Testcontainers Test
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 已关闭 9 年前。 此问题似乎与 a specific programming problem, a sof
我正在尝试使用 MSI 身份验证(无需用户名和密码)从 Azure 机器学习服务连接 Azure SQL 数据库。 我正在尝试在 Azure 机器学习服务上建立机器学习模型,目的是我需要数据,这就是我
我在我的 MySQL 数据库中使用这个查询来查找 my_column 不为空的所有行: SELECT * FROM my_table WHERE my_column != ""; 不幸的是,许多行在
我有那个基地:http://sqlfiddle.com/#!2/e5a24/2这是 WordPress 默认模式的简写。我已经删除了该示例不需要的字段。 如您所见,我的结果是“类别 1”的两倍。我喜欢
我有一张这样的 table : mysql> select * from users; +--------+----------+------------+-----------+ | userid
我有表: CREATE TABLE IF NOT EXISTS `category` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL
我是一名优秀的程序员,十分优秀!