mirror of
				https://github.com/Biarity/Sieve.git
				synced 2025-10-31 00:39:12 +01:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			15 lines
		
	
	
		
			329 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			329 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Sieve.Attributes;
 | |
| using SieveUnitTests.Abstractions.Entity;
 | |
| 
 | |
| namespace SieveUnitTests.Entities
 | |
| {
 | |
|     public class Comment : BaseEntity, IComment
 | |
|     {
 | |
|         [Sieve(CanFilter = true)]
 | |
|         public string Text { get; set; }
 | |
|         
 | |
|         [Sieve(CanFilter = true)]
 | |
|         public string Author { get; set; }
 | |
|     }
 | |
| }
 |