EfVueMantle 1.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package EfVueMantle --version 1.0.6
NuGet\Install-Package EfVueMantle -Version 1.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EfVueMantle" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EfVueMantle --version 1.0.6
#r "nuget: EfVueMantle, 1.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EfVueMantle as a Cake Addin
#addin nuget:?package=EfVueMantle&version=1.0.6

// Install EfVueMantle as a Cake Tool
#tool nuget:?package=EfVueMantle&version=1.0.6

EfVueMantle

A package connecting Entity Framework Core data to EfVueCrust

== If you're finding this already somehow, please know this is a very incomplete restart of a thing I've rebuilt a couple of times, this will hopefully be a clean, clear, trimmed down version of that system ==

What this project aims to do, ideally, is allow data models from .net applications to be understood and interacted with by Vue3 applications.

Stack

Entity Framework Core

Define your models as you do today, using EfVueMantle.ModelBase as your base class. (see caveats)

EfVueMantle

Get it on GitHub or Nuget.org

Mantle provides bases for model, controller, and service for each data type. This scaffolds the basic functionality allowing Crust to explore data via convention. It also crafts Javascript class files for Crust, allowing your Vue3 application to understand your entire data structure.

ef-vue-crust

Get it on GitHub

Provides interfaces for Vue3 to interact with your defined data models via convention.

Creates a virtual "Database" that holds onto records, remembers query results and sort orders, and generally lets you worry about presentation instead of how to transfer data back and forth.

Vue3

Traverse properties in your Vue3 components with dot notation object accessors, and let ef-vue-crust worry about asyncronous data loading.

(Core, Mantle, Crust, get it? Great. Naming things is hard.)

Functionality {#functionality}

These generic methods are understood and automatically sought by ef-vue-crust.

Get list of all ids for a model

Implemented

Get list of ids fitting a pattern for a model

Implemented (case-insensitive exact match, case-insensitive string-include match)

Get list of ids ordered by property

Implemented (descending and ascending)

Get all records for a model

Implemented

Get a record by id for a model

Implemented

Get records from a list of ids for a model

Implemented

Create new data record for model

Not implemented

Update data record for model

Not implemented

Caveats

  1. The .net-> js translator currently requires that you manually define the ForeignKeys in your models. Not a huge thing but a bit annoying. This can hopefully be overcome later

  2. Many-to- relationships are a little wonky. Records shouldn't return related data, only related ids. Currently, this over-pulls from the database, creates the id lists at the model level with some extra code I'd prefer wasn't necessary, and also shoves all of the related data back to the front-end. This WILL need to be fixed up at some point, but I've not gotten to that yet.

  3. Although ef-vue-crust supports guid PKs/ids (untested) this package defaults ids to ints. It's not a priority for me at this time, but the intent is for GUID ids to be possible

Getting started!

You'll need to call the ExportDataObjects method, with a path to wherever you want the exported JS to live. I suggest a directory in your VueProject/src folder named something snazzy like "data".

This will automatically pick up any models using EfVueMantle.ModelBase as a base class, and any enums used in their properties.

I just drop this in my OnModelCreating:

if (_hostingEnvironment.IsDevelopment())
{
    ModelExport.ExportDataObjects("../../your-vue-project/src/data");
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.45 1,788 1/11/2024
1.0.44 312 1/11/2024
1.0.43 661 12/15/2023
1.0.41 799 12/11/2023
1.0.40 830 9/19/2023
1.0.39 493 9/13/2023
1.0.37 621 8/19/2023
1.0.36 501 8/17/2023
1.0.32 566 8/10/2023
1.0.30 878 11/7/2022
1.0.29 893 10/19/2022
1.0.28 819 10/19/2022
1.0.27 840 10/10/2022
1.0.26 818 10/4/2022
1.0.25 906 9/27/2022
1.0.24 892 9/26/2022
1.0.23 853 9/23/2022
1.0.18 926 9/23/2022
1.0.6 858 9/13/2022
1.0.0 866 9/9/2022