LiteDB包装器
使用更简单方法
如何
添加为参考
using LiteDB . Wrapper ;
using LiteDB . Wrapper . Interface ;
创建集合参考
ICollectionRef < YourModel> reference = new CollectionReference < YourModel>( " mydatabase.db " , " my_collection " );
可用方法
Insert ( T )
Insert ( IList < T> )
Update ( T )
Update ( IList < T> )
Remove ( Guid )
Remove ( IList < Guid> )
Commit ()
Get ( Guid )
GetPaged ( PageOptions , SortOptions )
这是一个示例用法
ICollectionRef < Model> reference = new CollectionReference < Model>( litedbloc , " in
1