mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 21:42:38 +01:00
428acd7558
* Update sample project to dotnetcore3.1 * Use Sqlite in sample project to run it everywhere * Fix: Filter with escaped comma * Fix: Filter "null" does not work with Contains or StartsWith * Code cleanup: Adjust namespaces, adjust usings
32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Sieve.Attributes;
|
|
|
|
namespace Sieve.Sample.Entities
|
|
{
|
|
public class Post
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[Sieve(CanFilter = true, CanSort = true)]
|
|
public string Title { get; set; } = Guid.NewGuid().ToString().Replace("-", string.Empty)[..8];
|
|
|
|
[Sieve(CanFilter = true, CanSort = true)]
|
|
public int LikeCount { get; set; } = new Random().Next(0, 1000);
|
|
|
|
|
|
[Sieve(CanFilter = true, CanSort = true)]
|
|
public int CommentCount { get; set; } = new Random().Next(0, 1000);
|
|
|
|
[Sieve(CanFilter = true, CanSort = true)]
|
|
public DateTimeOffset DateCreated { get; set; } = DateTimeOffset.UtcNow;
|
|
|
|
[Sieve(CanFilter = true, CanSort = true)]
|
|
[Column(TypeName = "datetime")]
|
|
public DateTime DateLastViewed { get; set; } = DateTime.UtcNow;
|
|
|
|
[Sieve(CanFilter = true, CanSort = true)]
|
|
public int? CategoryId { get; set; } = new Random().Next(0, 4);
|
|
}
|
|
}
|