document like entity on the client #214
-
on the server i'm using a NoSQL database (litedb,cosmos or mongo) inside i've document like record non simple row public class Document
{
public string Description { get; set; }
public Company CompanyData { get; set; }
public List<Detail> Details {get;set;}
}
public class Company
{
public string Description{get;set;}
public string Address {get;set;}
}
public class Detail
{
public string Description {get;set;}
public decimal Value {get; set; }
}
is this type of data supported by the client? |
Beta Was this translation helpful? Give feedback.
Answered by
adrianhall
Jan 22, 2025
Replies: 1 comment 1 reply
-
Nope - The datasync client is really for known structured table-like data. As much as we support NoSQL databases, we don't treat them any differently than SQL type databases. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
guidoDimasi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nope - The datasync client is really for known structured table-like data. As much as we support NoSQL databases, we don't treat them any differently than SQL type databases.