Hello Team,
I am working with WebApi project with C# .Net.I am having a common entity like below:
public class User
{
string Userid;
string Description;
}
This is the base entity shared by all data storage's like in-memory, sqlserver and SiaqoDB etc.
While save a data with more than 100 char in SiaqoDB i need to decorate the entity like below;
By default SiaqoDB stores only 100 character in string type, I can't use the [Text] attribute in the entity as the project have all our entities didn't have the reference of SiaqoDB.
Let me know if there is a option to make the string column by default to accept more than 100 characters.