Asp.Net MVC4的学习概况
2021-07-02 18:04
标签:visual val elb collect put add list search nec 周一正式开始了毕业工作。然后学习调试了近4天,刚刚总算在同事的帮助下做出了一个基于Asp.Net MVC4的Hello World显示。 这是一篇最为基础的记录教程,记录内容可能有点混乱,旨在能在刚调试完成,趁着印象深刻急速记录,晚些会重新做一遍这个项目写一个更为详细的博文。 下面是正文: 整个网站项目由若干个功能子项目组成。而我要做的是自己做一个口香糖demo混在原项目中。所以基础的配置我就先不说了。首先复制别的子项目一份并且重命名为Aibol.Sugar,并且导入visual studio。导入后的项目如下图所示。 然后把多余的文件删除,然后写相应的代码。最后截图如下。 好了,上面就是完成效果,教程结束。 开个玩笑。 下面是核心步骤: 1.创建数据库jiedian.Aibol.Sugar。 注意,ID一定要是uniqueidentifier类型!敲黑板!因为后面是要继承父类进行操作,所以就限定死了ID必须是该类型。 另外一定要有一个Status状态,这个我忘记为什么了,但是一定要加(也有可能是我记错了,我会在下个教程中说明的,应该) 2.在项目的Repositories文件夹中创建SqlServer文件夹和一个ISugarRepository接口。然后在SqlServer中创建SugarRepository和数据库访问模板Sugar.dbml。如下图所示。 为什么是这种格式呢?扔粉笔!很重要啊!如果后期需要实现mysql数据库,那么只要在Repositories文件夹中再创建一个“mysql”文件夹,接口都共用ISugarRepository接口。也就是说用同一套接口实现不同的数据库。 3.Sugar.dbml是这样创建的:新建一个“LINQ to SQL Classes”,即可创建一个空dbml文件。在这里重命名为Sugar.dbml。然后在SQL Server Object Explorer窗口中,把jiedian.Aibol.Sugar数据库直接拖到这个空dbml文件中,就可以成功创建一个非空的dbml文件。 题外话:这个东西到底有什么用我也不是很清楚,反正这么用就对了。表示从Java的SSM框架转到Asp.Net MVC4还是有点水土不服的。 4.然后ISugarRepository.cs的内容改成这样: 我也不知道为什么,照着写就对了。 5.相对应的SugarRepository.cs改成这样: 同理,原理不知。 6.Services文件夹下创建service文件,其中包括ISugarService和SugarService。 其中ISugarService文件内容如下: SugarService文件内容如下: 7.然后创建controller。在Controllers文件夹下创建SugarController,内容如下: 除了路由那部分,其它内容都很迷,我表示看不大懂,好像是在注册一些东西?说到注册,请看8。 8.在项目根目录下创建SugarModule.cs,继续敲黑板!在这里坑了很久,必须要注册service和repository! 9.在主项目目录Views下创建Sugar文件夹,在里面创建前端展示页面Sugars.cshtml。 10.在主项目config里分别在各个节点加入如下代码: 在dataProviders中加入如下内容: 在modules中加入如下内容: 11.运行项目,跑一把,下面是浏览截图。- -; 花了四天总算把一个Hello口香糖写出来。很感谢我同事啊,不厌其烦的教我??感觉自己蠢爆天?? 一些相关的小知识: Alt+Enter可以直接进行代码整理和提示。 在coding.net可以注册git账号然后同步项目代码。 在类名或者方法上按F12可以跳转到该类或者该方法的定义位置。 调试过程中,F10是该代码页面依次执行(不会进入方法进行细分调试)。F11是依次执行每一行代码(如果遇到方法,会进入该方法逐步调试) Debug->Windows->Threads,可以在调试中对线程进行锁定等操作。 如果发现项目无法调试,很可能你的调试模式调成了Release,把它调整为Debug就可以了。 Asp.Net MVC4的学习概况 标签:visual val elb collect put add list search nec 原文地址:http://www.cnblogs.com/chenyangsocool/p/7127338.htmlnamespace Aibol.Modules.Sugars.Repositories
{
public interface ISugarRepository : IRepositoryBase
namespace Aibol.Modules.Sugars.Repositories.SqlServer
{
public class SugarRepository : ISugarRepository
{
private readonly SugarDataContext _context;
public SugarRepository(SugarDataContext context)
{
_context = context;
}
public int Delete(SearchCriteria searchCriteria)
{
throw new NotImplementedException();
}
public IQueryable
namespace Aibol.Modules.Sugars.Services
{
public interface ISugarService : IServiceBase
namespace Aibol.Modules.Sugars.Services
{
class SugarService:ISugarService
{
private readonly ISugarRepository _sugarRepository;
private readonly IAibolCacheModule _cache;
private readonly ITenantService _tenantService;
public SugarService(ISugarRepository sugarRepository, IBackgroundServiceRegistry backgroundService, IAibolCacheModule cache, ITenantService tenantService)
{
_sugarRepository = sugarRepository;
_cache = cache;
_tenantService = tenantService;
}
public Models.Sugar GetInstance(Guid id)
{
if (id == Guid.Empty)
return null;
var sugar = _cache.GetItem(id.ToString(),
() =>
{
var s = _sugarRepository.GetInstance(id);
return s;
},
null);
return sugar;
}
public Models.Sugar Save(Models.Sugar item)
{
if (!string.IsNullOrEmpty(item.Name) && string.IsNullOrEmpty(item.SpellChar))
{
item.SpellChar = item.Name.GetSpellCode();
}
_sugarRepository.Save(item);
_cache.Invalidate(item.GetCacheItemKey());
return GetInstance(item.ID);
}
public IPageOfItems
namespace Aibol.Modules.Sugars.Controllers
{
[Application(Name = "Data.Sugar", DisplayOrder = 10)]
public class SugarController:AibolController
{
//私有变量
private readonly IBackgroundServiceRegistry _backgroundServiceRegistry;
private readonly ISugarService _sugarService;
public SugarController(IValidationService validationService,
AibolContext context,
ISerializationService serializationService, IBackgroundServiceRegistry backgroundServiceRegistry, ISugarService sugarService)
: base(validationService, context, serializationService)
{
_backgroundServiceRegistry = backgroundServiceRegistry;
_sugarService = sugarService;
}
public SugarController(IValidationService validationService,
AibolContext context,
ISerializationService serializationService,
ILogService logService,
ILocalizationService localizationService, IBackgroundServiceRegistry backgroundServiceRegistry, ISugarService sugarService)
: base(validationService, context, serializationService, logService, localizationService)
{
_backgroundServiceRegistry = backgroundServiceRegistry;
_sugarService = sugarService;
}
internal object list(object p)
{
throw new NotImplementedException();
}
[HttpGet]
[AllowAnonymous]
[ActionName("Sugars")]
public object SugarIndex()
{
var model = new AibolViewModel
{
Container = new SugarsContainer()
};
return model;
}
}
}
namespace Aibol.Modules.Sugars
{
class SugarModule: IAibolModule, IAibolDataProvider
{
private readonly IUnityContainer _container;
public SugarModule(IUnityContainer container)
{
_container = container;
}
//fixed
public void Initialize()
{
}
//fixed
public void Unload()
{
}
//fixed
public void RegisterRoutes(RouteCollection routes)
{
routes.MapRoute(
"Sugars",//路由名称
"sugars",//带有参数的url
new {Controller="Sugar",action="Sugars"},//指定控制器以及默认参数值
null
);
}
//fixed
public void RegisterCatchAllRoutes(RouteCollection routes)
{
}
//sth problems
public void RegisterFilters(IFilterRegistry filterRegistry)
{
filterRegistry.Add(Enumerable.Empty
文章标题:Asp.Net MVC4的学习概况
文章链接:http://soscw.com/index.php/essay/100897.html