每个框架的优点和缺点是什么,相互比较?他们使用ASP.NET MVC的效果如何?他们支持嘲笑的程度如何?
当我在SharePoint中添加新文档(如Microsoft Word文档)时,文件(二进制数据)存储在哪里?
在MSSQL引擎中?(BLOB?)在硬盘上作为本机文件?
别的地方?
public class DTOa
{
public int Id { get; set;}
public string FirstName { get; set;}
}
public class DTOb: DTOa
{
public string Email { get; set;}
public string Password { get; set; }
}
public class a
{
protected DTOa _DTO = new DTOa();
public int Id
{
get
{
return _DTO.Id;
}
set
{
_DTO.Id = value;
}
}
public string FirstName
{
get
{
return _DTO.FirstName;
}
set
{
_DTO.FirstName = value;
}
}
public DTOa …Run Code Online (Sandbox Code Playgroud) c# ×2
.net ×1
inheritance ×1
nunit ×1
properties ×1
sharepoint ×1
testing ×1
unit-testing ×1
xunit ×1