DotNetCore.Objects 16.11.0

DotNetCore.Objects

BinaryFile

public class BinaryFile
{
    public BinaryFile(Guid id, string name, byte[] bytes, long length, string contentType) { }

    public Guid Id { get; }

    public string Name { get; }

    public byte[] Bytes { get; private set; }

    public long Length { get; }

    public string ContentType { get; }

    public static async Task<BinaryFile> ReadAsync(string directory, Guid id) { }

    public async Task SaveAsync(string directory) { }
}

BinaryFileExtensions

public static class BinaryFileExtensions
{
    public static async Task<IEnumerable<BinaryFile>> SaveAsync(this IEnumerable<BinaryFile> files, string directory) { }
}

Filter

public sealed class Filter
{
    public string Property { get; set; }

    public string Comparison { get; set; }

    public string Value { get; set; }
}

Filters

public sealed class Filters : List<Filter> { }

Order

public class Order
{
    public bool Ascending { get; set; }

    public string Property { get; set; }
}

Page

public class Page
{
    public int Index { get; set; }

    public int Size { get; set; }
}

GridParameters

public class GridParameters
{
    public Filters Filters { get; set; }

    public Order Order { get; set; }

    public Page Page { get; set; }
}

Grid

public class Grid<T>
{
    public Grid(IQueryable<T> queryable, GridParameters parameters) { }

    public long Count { get; }

    public IEnumerable<T> List { get; }

    public GridParameters Parameters { get; }
}

GridExtensions

public static class GridExtensions
{
    public static Grid<T> Grid<T>(this IQueryable<T> queryable, GridParameters parameters) { }

    public static Task<Grid<T>> GridAsync<T>(this IQueryable<T> queryable, GridParameters parameters) { }
}

Showing the top 20 packages that depend on DotNetCore.Objects.

Packages Downloads
DotNetCore.AspNetCore
DotNetCore.AspNetCore
0

.NET 6.0

Version Downloads Last updated
16.11.0 0 5/28/2026