将sqlite数据库注入MAUI ViewModels时出现ViewModel未定义无参数构造函数的错误

rdlzhqv9  于 2022-11-30  发布在  SQLite
关注(0)|答案(1)|浏览(223)

我是MAUI的新手,我有一个使用sqlite数据库来存储我的项目数据的工作项目。我正在尝试将我的数据库访问对象注入到我的一个内容页面的ViewModel中。我以前只是通过创建(“new”ing up”)我的数据库访问对象以及数据库和项目工作得很好。当我更改此设置以便将数据库访问对象注入ViewModel的构造函数时,我得到一个错误:

/Users/RemoteCommand/Projects/Notes/Views/AllNotesPage.xaml(9,9): Error: XLS0507: Type 'AllNotes' is not usable as an object element because it is not public or does not define a public parameterless constructor or a type converter. (Notes) IntelliSense

下面是我的XAML文件:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
              xmlns:models="clr-namespace:Notes.Models"
             x:Class="Notes.Views.AllNotesPage"
             Title="AllNotesPage">

    <ContentPage.BindingContext>
        <models:AllNotes />
    </ContentPage.BindingContext>

    <ContentPage.ToolbarItems>
        <!--<ToolbarItem Text="Add" Clicked="Add_Clicked" IconImageSource="{FontImage Glyph='+', Color=White, Size=22}"/>-->
        <ToolbarItem Text="Add" Command="{Binding AddClickedCommand}" IconImageSource="{FontImage Glyph='+', Color=White, Size=22}"/>
    </ContentPage.ToolbarItems>

    <CollectionView x:Name="notesCollection"
                    ItemsSource="{Binding Notes}"
                    Margin="20"
                    SelectionMode="Single"
                    SelectionChanged="notesCollection_SelectionChanged">

        <CollectionView.ItemsLayout>
            <LinearItemsLayout Orientation="Vertical" ItemSpacing="10"/>
        </CollectionView.ItemsLayout>

        <CollectionView.ItemTemplate>
            <DataTemplate>
                <StackLayout>
                    <Label Text="{Binding Text}" FontSize = "22"/>
                    <Label Text="{Binding Date}" FontSize="14" TextColor="Silver"/>
                </StackLayout>
            </DataTemplate>
        </CollectionView.ItemTemplate>
    </CollectionView>
</ContentPage>

下面是我的代码:

namespace Notes.Views;
using Notes.Models;
using Notes.Views;
using Notes.Data;
using CommunityToolkit.Mvvm.Input;

public partial class AllNotesPage : ContentPage
{   
    public AllNotesPage()
    {
        InitializeComponent();
    }
    async void notesCollection_SelectionChanged(System.Object sender, Microsoft.Maui.Controls.SelectionChangedEventArgs e)
    {
        if(e.CurrentSelection.Count != 0)
        {
            var note = (Note)e.CurrentSelection[0];
            await Shell.Current.GoToAsync($"{nameof(NotePage)}?{nameof(NotePage.ItemId)}={note.ID}");
        }
    }
}

下面是我的ViewModel:

using System;
using System.Collections.ObjectModel;
using Notes.Data;
using Notes.Views;
using CommunityToolkit.Mvvm;
using CommunityToolkit.Mvvm.Input;

namespace Notes.Models;

public partial class AllNotes
{
    NotesDatabase _notesDatabase;

    public ObservableCollection<Note> Notes { get; set; } = new ObservableCollection<Note>();

    public AllNotes(NotesDatabase notesDatabase)
    {
        _notesDatabase = notesDatabase;
        LoadNotes();
    }
    [RelayCommand]
    async void AddClicked()
    {
        await Shell.Current.GoToAsync(nameof(NotePage));
    }
    public async void LoadNotes()
    {
        Notes.Clear();
        List<Note> notes = await _notesDatabase.GetItemsAsync();
        foreach(Note note in notes)
        {
            Notes.Add(note);
        }
    }
}

下面是我的MauiProgram,我在其中定义了依赖注入:

using Microsoft.Extensions.Logging;
using Notes.Views;
using Notes.Models;
using Notes.Data;

namespace Notes;

public static class MauiProgram
{
    public static MauiApp CreateMauiApp()
    {
        var builder = MauiApp.CreateBuilder();
        builder
            .UseMauiApp<App>()
            .ConfigureFonts(fonts =>
            {
                fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
                fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
            });

#if DEBUG
        builder.Logging.AddDebug();
#endif

        builder.Services.AddSingleton<AllNotes>();
        builder.Services.AddSingleton<AllNotesPage>();
        builder.Services.AddSingleton<NotesDatabase>();
        
        return builder.Build();
    }
}

[Note:我已将此页的AddSingleton切换为Add Transient,以查看是否可以修复这些定义的问题,但它没有修复]
我在早期的一个测试项目中尝试了一个非常基本的依赖项注入,在该项目中,我将数据访问对象注入到后面的代码中,并得到了关于缺少无参数构造函数的相同错误,结果发现我缺少的是在MauiProgram中将数据访问对象AND ContentPage定义为Transient或Singleton(这就是为什么我在这个项目中将数据访问对象ContentPage和ViewModel作为Singletons添加到MauiProgram中的原因)。但现在我使用的是绑定在XAML中的ViewModel,似乎无法让DI为ViewModel工作。
请帮帮这个新手!
此致

i34xakig

i34xakig1#

在XAML中这样做是一个公开的问题:Resolve XAML BindingContext from ServiceCollection
现在,通过代码隐藏的构造函数,使用一个参数来完成此操作:

public AllNotesPage(AllNotes vm)
{
    InitializeComponent();
    BindingContext = vm;
}

DI将注入vm,执行所需的AllNotes及其NotesDatabase的示例化。

相关问题